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

Best State Management
We were using States Rebuilder in our project and I was struggling to understand and piece together information from the sparse documentation until it got a major overhaul couple days back.Now I want to go with a different and a more mainstream solution. What would be a good one in terms of learning curve, ease of implementation?/r/

March 15, 2021 at 05:58PM by zeninmaking
https://ift.tt/3bQ8ea9
New post on /r/flutterdev subreddit:

What is the difference between outputs/flutter-apk and outputs/apk/release builds?
When giving the command to build an apk using flutter build apk we get two folders, one is build\app\outputs\apk\release and another apk in build\app\outputs\flutter-apkWhat is the difference? Which one to use when publishing?

March 15, 2021 at 05:33PM by ustaaz
https://ift.tt/2OzJOJ9
New post on /r/flutterdev subreddit:

groovin_widgets has joined the null safety gang
https://ift.tt/2N84Zkg

March 15, 2021 at 05:26PM by GroovinChip
https://ift.tt/38Hzy8p
New post on Flutter Dev Google group:

Flutter 2.0.1, 2.0.2 hotfixes released to the stable channel
Friends, Last week we neglected to inform you that we released two hotfixes to the stable channel. I personally apologize to you for this; it was my oversight. Here’s the list of changes: Flutter 2.0.2 This fixes the following issues in the framework and Dart. No fixes were applied to

March 15, 2021 at 06:31PM by Ray Rischpater
https://ift.tt/3lkjJJV
New post on /r/flutterdev subreddit:

What Is Going On With firebase_admob?
I can't find it on Pub.dev anymore and it hasn't been updated to use null safety.I know Google Ads was released with Flutter 2 so my immediate thought is that it has been deprecated but I haven't been able to confirm this anywhere.

March 15, 2021 at 07:03PM by azuredown
https://ift.tt/38HCPoy
New post on /r/flutterdev subreddit:

Support young developer
Hi I'm Luan.I had just completed my first flutter project and am happy to announce that it is available on the google play store. It is a simple habit tracker, so no, not a task list app that we see regularly on the store. I wanted something to help me do challenges this year to change my lifestyle and I believe I made an app perfect for that. It keeps track of streaks and other important info. You can even set a daily goal to help with motivation. It is completely free and has a nice modern UI. If you don't have a idea of a challenge to do then no worries as the app has a random challenge section that gives you a random challenge and a time period (which you can change, of course).If you have the time to support me I would appreciate it very much. Leaving a positive review would be the icing on the cake!You can check it out on: https://play.google.com/store/apps/details?id=com.luan.newchallengerappThank you.

March 15, 2021 at 08:57PM by Expert-Oven-9489
https://ift.tt/3bUdnOF
New post on Flutter Dev Google group:

Phone Authentication in Web
My app uses phone authentication and work perfect on Android but doesn't work on Chrome. Don't know where is the problem?

March 16, 2021 at 06:00AM by Haider Ali
https://ift.tt/2Q9GWDl
New post on Flutter Dev Google group:

webview_flutter is not working
hello there! I want to open a web page through web view and used *webview_flutter*: ^2.0.2 plugin for that but getting error on *javascriptMode *as The named parameter 'javascriptMode' is not defined. Can anyone point me in the right direction?

March 16, 2021 at 06:38AM by Raman Plaha
https://ift.tt/3tm11Ve
New post on /r/flutterdev subreddit:

Firebase Pricing Example
im trying to understand the firebase pricing model and I stumbled over this. https://firebase.google.com/docs/firestore/pricingQueries other than document reads For queries other than document reads, such as a request for a list of collection IDs, you are billed for one document read. If fetching the complete set of results requires more than one request (for example, if you are using pagination), you are billed once per request.Let's say Im fetching 10 profiles from a profiles
collection (10.000 documents) randomly limit(10)
it would cost me 10 reads.
return FirebaseFirestore.instance .collection('profiles') .limit(10) .get() .then(...) 
Now I want to show my 10 results in the UI and I also want to show the clients a heart icon which is filled if the client liked the profile or not. I would fetch the user data and check if the user liked one of the 10 profiles. I already learned storing the user specific data in the same collection profiles
doesn't make sense, lets say we are saving it in a users
collection subcollection called profilelikes:
return FirebaseFirestore.instance .collection('users') .doc('userId') .collection('profilelikes') .get() .then((QuerySnapshot querySnapshot) => { querySnapshot.docs.forEach((doc) { if () { // check if profiles from list matches userprofile document } }) }); 
What does it mean for this case exactly? Lets say the user has 5000 documents inside the profilelikes
Im searching in 5000 documents if 10 of them are matching or not. Let's say 2 of them are matching:How many costs do we have here?First Query: 10 reads because we have 10 results here
Second Query: ???

March 16, 2021 at 09:55AM by md186
https://ift.tt/3bPsGYx
👍1
New post on /r/flutterdev subreddit:

Is Flutter 2.0 capable of supporting a real mobile solution migration approach?
My team wants to migrate away from a large native mobile app toward a complete flutter solution. What I read about add-to-app being limited to a single module and no new maturity of support in 2.0. I dont see how such a migration is possible (replace a native feature one at a time until we have a full flutter app). Is this limitation still there in 2.0? If so, I dont see how flutter can become a real approach for mobile teams to embrace such a framework. The risk to move to it is still too high. If it is true, shouldnt this be a major focus for the project?

March 16, 2021 at 10:18AM by RavenRIP
https://ift.tt/3vvZYUE
New post on /r/flutterdev subreddit:

Backend and map recommendation for app like uber
So I'm making an app like uber and i wanted your recommendations for a backend database and map considering lower costs Thanks

March 16, 2021 at 11:34AM by ihs_ahm
https://ift.tt/3czr6tf