Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on /r/flutterdev subreddit:

We’ve launched a design to Flutter converter which has code-reusability, plugins, and its all open source. Currently, we support Sketch and will quickly add Figma & XD support. Also, we'll always export exclusively to Flutter.
https://ift.tt/3kXZBNe

August 19, 2020 at 06:34PM by siliconivan
https://ift.tt/2FFbSWM
New post on /r/flutterdev subreddit:

Reverse Engineer flutter apps
I was just wondering is there any way to decompile flutter release build apk? Or is there some way to extract at least some of the source code from the apk?

August 19, 2020 at 07:09PM by brogeta17
https://ift.tt/3gcJcAT
New post on /r/flutterdev subreddit:

Let's make our navbar great once again 🔥
https://ift.tt/2YdTfPW

August 19, 2020 at 07:03PM by sooxiaotong
https://ift.tt/2Q8Cz88
New post on Flutter Dev Google group:

flutter web firebase phone auth
I have updated firebase core, and firebase auth dependencies to the latest augest 17 2020 updates, but phone auth isn't working in my project. I used signInWIthPhoneNumber() method cuz it is suggested for flutter web but it just returns the letter 'I' in the console. Anyone who can help me?

August 19, 2020 at 08:18PM by milkessa oljira
https://ift.tt/2YhT6LA
New post on /r/flutterdev subreddit:

Take Flutter's quarterly survey!
Hello Redditors,Flutter’s quarterly survey is back. Please take the Q3 survey from the link below and tell us about your experience with Flutter.Q3 survey: https://google.qualtrics.com/jfe/form/SV_0dqeKPPfOot7hWd?Source=RedditFindings from the previous survey (Q2) is available on Medium :)On behalf of the Flutter team, thank you!

August 19, 2020 at 08:29PM by janim27
https://ift.tt/2Eb8y5l
New post on Flutter Dev Google group:

Flutter 1.21.0-9.1.pre released to the beta channel
Hi all, I’m happy to announce that Flutter 1.21 / Dart 2.10 beta builds are now available on the beta channel: 1.21.0-9.1.pre
New post on /r/flutterdev subreddit:

Full text search with firebase_cloud without using any third party services like algolia.
Can anyone suggest a way to do full text search without using third party services? I have around 100,000 entries so copying them to client app for every search is not a valid option. Splitting sentences into words works for now but it is cluttering the database way too much. Thanks in advance.

August 19, 2020 at 09:41PM by nj_100
https://ift.tt/319b5Wn
New post on Flutter Dev Google group:

Strapi plugin
I am using Strapi for my flutter project, and I just realized that I do not have "plugins" folder inside my "server" folder of my project, I need that folder to get into "User.js" file to change some permissions. Anyone know how to solve this problem? Many thanks.

August 19, 2020 at 11:46PM by Ximui
https://ift.tt/2Yd498I
New post on /r/flutterdev subreddit:

Flutter Water Loading Spinner
https://ift.tt/2CIOjLF

August 19, 2020 at 11:44PM by skryu
https://ift.tt/3iUo58i
New post on /r/flutterdev subreddit:

What is the best practice way to update Provider State from a child widget?
Here is a classic example, you have a list of items on a page and a shopping cart provider at the top of the app. In order to update the Provider state, you can access the the nearest Cart object up the widget tree like so, and call a setter to update the cart. e.g.
Provider.of<Cart>(context, listen: false).addItem(item); 
This is very simple but kind of feels like a hack. Are there other, better ways to achieve this using the Provider package or is this the best way to do it?

August 20, 2020 at 01:37AM by 11010001101001
https://ift.tt/3l2SR0L
New post on /r/flutterdev subreddit:

AndroidAlarmManager & scheduled events
Hello,I have two questions:Is it possible to create alarms like "Every Sunday at 5pm".Is it possible to open the app if that event occursFor my understanding the API allows to call .periodic(seconds) but that's not enough right? If not is there any other plugin or option to solve that?

August 20, 2020 at 01:35AM by KaiN_SC
https://ift.tt/31bKR5o
New post on /r/flutterdev subreddit:

Setup style navigation in Flutter
I want to build setup style navigation in flutter like this example.User navigates to MainPage. MainPage needs some info so it opens PageSteep1 using the code below:dart var result = await Navigator.push(context, MaterialPageRoute( builder: (context) => PageStep1(), )); print(result);Pressing "Next" on PageStep1 pushes PageStep2 to navigationPressing "Finish" on PageStep2 should send result to MainPage (#1).Here's what I'm doing (temporary fix):```dart class PageStep1State { Future<void> next() async { var result = await Navigator.push(context, MaterialPageRoute( builder: (context) => PageStep2(), )); if (result != null) { Navigator.pop(result); } } }class PageStep2State { Future<void> finish() async { Navigator.pop(context, result); } } ```The code above works but there's an issue. It closes pages one by one which takes some time also I don't want user to see each page on stack when pressing "Finish".So, simply I just want to pass data from PageStep2 to MainPage.An example case for the issue:When user taps "Select address" location search page opens after searching the address the next page will open to get address details. When user tap save the result must be sent to main page to update address.Also when user taps "Change details" (to change just details) address details page should be opened and result should be sent back to main page.I know I can solve the issue using a bit "hacky" ways but I want to know is there any clever or correct way to handle this kind of situations.

August 20, 2020 at 02:50AM by zMisir
https://ift.tt/3hpK6eE
New post on /r/flutterdev subreddit:

What's the most repetitive part of developing in Flutter?
The part I dread most and find most repetitive is error handling. Sometimes adding in error handling takes almost as much time as the feature itself. The challenge is that errors need to be context sensitive so it's difficult to apply a single Mixin or error handling behavior to all errors. I also need to consider all the edge cases and many times a page has multiple different error handling behaviors.In-line pagination error, toast connection error, popup error, submit button error to disabled state, upload cancel animation, unknown error... and more!Flutter gives us an amazing developer experience but some things still get repetitive. Are there any painpoints in your development experience?

August 20, 2020 at 06:41AM by Codelessly
https://ift.tt/31e7ztM
New post on Flutter Dev Google group:

Saving Icon and Colors info to Firebase's Firestore
Hello everyone, In my project, I am storing data to Firebase's Firestore using Flutter's Firestore plugin