Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on Flutter Dev Google group:

help please divide datasnapshot into 2 column
TabBarView( controller: tabController, children:
New post on /r/flutterdev subreddit:

OnLaunch and onResume fired when clicking notification
FCM: If the application is not open and a notification is clicked. Both the events are fired, when the application is in background only onResume is fired, is this the expected behaviour? I was expecting only onLaunch to be fired if the app is not open.

May 16, 2020 at 05:10PM by il3g3ndry-ws
https://ift.tt/2LEKest
New post on Flutter Dev Google group:

Trying to intergrate firebase with my project but its failing to compile, could anyone help me its showing the errors below
C:\Users\DsTechLtd\AndroidStudioProjects\jumia_app\android\app\src\main\java\io\flutter\plugins\GeneratedPluginRegistrant.java:17: error: package io.flutter.plugins.firebaseanalytics does not exist flutterEngine.getPlugins().add(new io.flutter.plugins.firebaseanalytics.FirebaseAnalyticsPlugin

May 16, 2020 at 05:57PM by Kakooza Steven
https://ift.tt/365NcQg
New post on Flutter Dev Google group:

Access to site
We are having problems with connecting to Flutter.dev and Dart.dev from Uzbekistan. Local internet providers are telling that they didn't blocked these sites. And there is a problem with all the internet providers of Uzbekistan. Maybe it's on Flutter side

May 16, 2020 at 07:19PM by Abdulaziz Abduqodirov
https://ift.tt/3fXIeJM
New post on Flutter Dev Google group:

Exception:RenderStack object was given an infinite size during layout
I am trying to position a container inside a stack but keeps getting this exception.How can i position the container of given size inside the stack using lets say right:0,top:0?What correction should i make in my current code below?I am also attaching the screenshot of exception i am getting.The

May 16, 2020 at 07:46PM by Anoop Rana
https://ift.tt/3cEGCmm
New post on /r/flutterdev subreddit:

Which MBP configuration?
I’ve been struggling for the last few months with my 2015 MBA.I’m looking to upgrade to the MBP, what configuration of the following specs do you recommend? RAM -8gb -16gbStorage -256gb -512gbProcessor -1.4 GHz 8th Gen i5 -1.7 GHz 8th Gen i7 -2.0 GHz 10th Gen i5Ideally trying to keep the cost lost, whilst also future proofing, thing I least know about is the effect of the different processors.Thank you!

May 16, 2020 at 08:33PM by bonsaibloke
https://ift.tt/2X8MRIK
New post on /r/flutterdev subreddit:

#Hack20: Its happening again, but this time online. Sign up to the mailing list, and join us for the weekend of 27-28th June 2020!
https://ift.tt/2X11j5s

May 16, 2020 at 08:31PM by miyoyo
https://ift.tt/3bF0zbc
New post on /r/flutterdev subreddit:

loading_gifs v0.2.2 Released - New GIFs and optimized file size
https://pub.dev/packages/loading_gifshttps://github.com/Codelessly/FlutterLoadingGIFsChangelog:New small variant for use in progressive loading.Optimized GIF sizes. 30% smaller than before.New blank 1x1 pixel image. Use a empty placeholder to prevent `AssetBundle` errors in widgets such as FadeInImage.

May 16, 2020 at 10:02PM by Codelessly
https://ift.tt/3cBSDsQ
New post on /r/flutterdev subreddit:

Supported / active Flutter Speech Recognition packages?
I seem to be having a problem finding a standard / official Flutter speech recognition package that I can use.I was able to get these two packages to work okay:https://pub.dev/packages/speech_to_text https://pub.dev/packages/speech_recognition -> throws warnings that it using deprecated APIs during runtime - I don't see any recent commits for it.It's a shame that the flutter pub.dev site doesn't let the community mark packages as old / inactive / deprecated.Is there a paid / supported package for speech recognition?

May 16, 2020 at 11:40PM by Akimotoh
https://ift.tt/2Z8b2ti
New post on Flutter Dev Google group:

FutureBuilder visibility issue
Hi I have the following code which retrieves data via HTTP and displays it via a FutureBuilder [image: 2020-05-17_00h14_12.png] This works well. I now want to put the other widgets on the screen and as such wrap the FutureBuilder<> in a column widget. When I do this the screen is now blank.

May 17, 2020 at 01:20AM by Richard Kavanagh
https://ift.tt/2LznsT1
New post on /r/flutterdev subreddit:

Smile game
Hii, I created my first game with flutter, I just uploaded it to the play store because it's to expensive to publish it in the app store.It's about a lizard that jumps when you smile and I would love if you guys can give it a try.https://play.google.com/store/apps/details?id=com.tollini_games.lizard

May 17, 2020 at 03:22AM by ResponsibleComposer0
https://ift.tt/2WCKiQ1
New post on /r/flutterdev subreddit:

Colouring app
Guys I'm thinking of making a coloring app.. Which will have the figures and user just has to select colors and paint it.. Anyone could help me with finding a project/YouTube video that vaguely deals with such kind of thing so i can get some ideas....

May 17, 2020 at 10:09AM by redditsucks690
https://ift.tt/2ZhmgMh
New post on /r/flutterdev subreddit:

This can(’t) be null. Or somewhat surprising behavior of extension methods.
https://ift.tt/2TcZeSW

May 17, 2020 at 09:40AM by spkersten
https://ift.tt/2Zhjvup
New post on /r/flutterdev subreddit:

How to get various common directories in Android and iOS?
Tip no 41 of 100 on 100 Days of Flutter.Path Provider( path_provider package) (common file locations in iOS and Android)Sometimes we want to get the location of Various common directories like:Download, Cache, Documents, External Storage, External Cache etc.The package path_provider is build for exact same reason so that we do not have to deal with Platform specific issues by our own.Add path_provider to pubspect. path_provider: ^verisonUse it
//Gives download directory Directory tempDir = await getTemporaryDirectory(); //Gives documents directory Directory docDir = await getApplicationDocumentsDirectory(); //Gives external Storages List<Directory> externalStorages = await getExternalStorageDirectories(); //Gives download directory Directory downloadDir = await getDownloadsDirectory(); 
Download path_providerProvide feedback / contribute on awesome flutter tipsGet daily Tips here

May 17, 2020 at 08:54AM by erluxman
https://ift.tt/2Lwro74
New post on /r/flutterdev subreddit:

How to do a combination of Domain driven design (DDD) and MVVM Provider architecture in flutter?
Hello devs! I’ve been doing flutter development for a while now using FilledStack Provider Architecture As seen here https://youtu.be/kDEflMYTFlkI’ve watched DDD flutter tutorial by ResoCoder too https://youtu.be/RMiN59x3uH0 But the DDD diagram shown is using BLoC for the “application layer”Right now, I would like to add DDD to my development, how should 1 combined these 2 together? What should be at the “app layer” if I’m using “Provider”?Any help is much appreciated :)

May 17, 2020 at 08:36AM by SpaceYraveler6
https://ift.tt/2WDLcM4
New post on Flutter Dev Google group:

Push notifications iOS not working onMessage
When I send out a push notification when the app is open I am getting this error message ═══════ Exception caught by widgets library ═══════════════════════════════════════════════════════ The following NoSuchMethodError was thrown building Builder(dirty): The method '[]' was called on null.

May 17, 2020 at 09:50AM by Angela Scott
https://ift.tt/2ACdqhN
New post on /r/flutterdev subreddit:

Can we expect Flutter Web Stable and Flutter Desktop Stable in this year end?
I need to know the release roadmap of Flutter Web Stable and Flutter Desktop Stable ?

May 17, 2020 at 10:35AM by RageshAntony
https://ift.tt/2WBPJi7
New post on /r/flutterdev subreddit:

QUESTION: how to write the BLOC pattern's state file?
Hi everyone, I was going through the flutter_bloc tutorial and they used two different ways to write the BLOC's state file. For one bloc they used an abstract class extended from Equitable while for the other they used a single class with factory constructor for defining states. My question is when do we use which one?

May 17, 2020 at 10:32AM by dontGiveAnEfAnynore
https://ift.tt/3fYeFb6
New post on /r/flutterdev subreddit:

Automatically deploying to Firebase after Flutter Build Web
Hi all , I basically want to automatically run firebase deploy after building the web client . Is their a trick to doing this ?

May 17, 2020 at 11:28AM by undefinedNANString
https://ift.tt/2X6huhA