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

Broken link in documentation
Hi, Just want to report a broken link in the documentation (it leads to GitHub's error 404). Not sure this is the right place, sorry if it's not. URL: http://bit.ly/2GAmrZy Section "Defining a class for the app’s localized

February 12, 2019 at 06:23AM by Grzegorz Antoniak
http://bit.ly/2tiRl0U
New post on /r/flutterdev subreddit:

Having problems with fetching data from internet
Hi everyone,First post here and enjoying flutter but getting frustrated with a simple http call. I'm following the cookbook here and am I am able to get the title to display no problem.I'm switching it to a new api endpoint, refactor the code to match the new object, eg, instead of a Post, it's a quote, and i am returning the with the errorAsyncSnapshot<DailyQ>(ConnectionState.waiting, null, type 'List<dynamic>' is not a subtype of type 'Map<String, dynamic>')Even though I am able to see the decoded response come across in the debug window:print(json.decode(response.body));I/flutter (13231): [{quoteID_FK: 307, quote: "Only a true best friend can protect you from your immortal enemies." - Richelle Mead, category: humor, dateSent: 2019-02-11}]I'm confused as to where to even look for the error. Is the problem with the encoding/decoding of the json or?I'm using vscode with a live device and emulator, not sure how to debug and step through. Any help appreciated.​​

February 12, 2019 at 05:19AM by eddyizm
http://bit.ly/2tiOyEY
New post on /r/flutterdev subreddit:

Flutter in-app purchases (part 2)
http://bit.ly/2TQlkJf

February 12, 2019 at 07:48AM by mulderpf
http://bit.ly/2E79EMB
New post on /r/flutterdev subreddit:

Flutter pattern
Hello guys . What might be the best architecture pattern to be used in flutter . I don't know , I see MVC , read about a BLOC pattern etc . Any good example and suggestion ?

February 12, 2019 at 10:09AM by stavro24496
http://bit.ly/2ti8KGI
New post on Flutter Dev Google group:

How to do Drop Down Menu like the one present in Google Maps application using Flutter
How to create a dropdown menu with images on Flutter?

February 12, 2019 at 11:14AM by Bhanuka Isuru
http://bit.ly/2E46Bog
New post on /r/flutterdev subreddit:

How to do Drop Down Menu like the one present in Google Maps application using Flutter?
http://bit.ly/2N0liM8

February 12, 2019 at 11:25AM by bisampath96
http://bit.ly/2SQ1Ozj
New post on /r/flutterdev subreddit:

How to do Drop Down Menu like the one present in Google Maps application using Flutter
How to create a dropdown menu with images on Flutter?​https://i.redd.it/lk706htn44g21.png

February 12, 2019 at 11:15AM by bisampath96
http://bit.ly/2N3n9j4
New post on /r/flutterdev subreddit:

BLE peripheral/beacon advertising support?
Are there any available flutter libraries currently that support BLE peripheral/beacon advertising? And if so do any of them support background advertising? Thanks.

February 12, 2019 at 12:23PM by SlickLibro
http://bit.ly/2TFBViF
New post on Flutter Dev Google group:

Is there any way to check internet usage within flutter?
Is there any way to check internet usage within flutter? also i want to calculate upload and download data capacities.

February 12, 2019 at 02:28PM by Eshan Nimesha
http://bit.ly/2SQyM2w
New post on Flutter Dev Google group:

Flutter stripe implementation
Hi everyone, I need to implement Stripe payment gateway in one of my application, is there any plugin or something I can use to add card and charge customers for some service. If anyone having any references please suggest. I have gone through some tutorials and plugin but none of them are as per

February 12, 2019 at 03:21PM by Ravi Shankar Singh
http://bit.ly/2TKP9e6
New post on /r/flutterdev subreddit:

Written my first mobile app using Flutter - "RomBro"
Hey,Just wanted to share my first mobile app. It communicates with the service (GitHub) I've written in C# using ASP.NET Core and SignalR. I started writing it primary to automate certain things on my Raspberry Pi, but then it kinda ended up being more of a tool for RetroPie users. I'm hoping that someone can take a look and share ways on how to improve parts of the code. At the moment I am not satisfied with the way I'm using Streams with the bloc package. So feel free to shoot! :)GitHub

February 12, 2019 at 03:01PM by nyoibou
http://bit.ly/2N0H2HK
New post on /r/flutterdev subreddit:

Flutter upgrade and Android X - beware! (solution inside)
If you have an existing flutter application, and you are depending on some external packages, you may run into a compatibility problems when running flutter upgrade. This may upgrade some packages and require you to upgrade the android project to Android X.Assuming all the packages you are using have been migrated to Android X, this would work. But what if some packages were not upgraded, and have no Android X version yet? This would prevent compilation.The solution is to remove the ^ symbol in the beginning of the package version. This symbol means that flutter is free to upgrade to the next minor version, which should have no breaking changes, but in fact some do.I wasted some time on it yesterday, and hope that if you run into this problem you'll find this tip useful.​

February 12, 2019 at 02:05PM by yoavrofe
http://bit.ly/2TGAqRq
New post on /r/flutterdev subreddit:

New in Flutter
Hello guys,​I'm a Junior programmer end i writting in java and I interesting to improve my skills in developering app android, the my question is:It's possible to write an application android with in java / kotlin applicative logic writting and used flutter for the UI the application android?or flutter do not give the possibility to write an application logic in another lenguage?​If you allow it, please direct me to a good guide​Sorry my terrible english but i'm learning

February 12, 2019 at 03:32PM by crazyjoker96
http://bit.ly/2RU8988
New post on Flutter Dev Google group:

try-catch not working (async/await)
// This method is called from outside. Future addBullet(Bullet bullet, Date date) async { try { await store.addBullet(bullet, _dateToPageId(date)); } on NoSuchPageError { print('NoSuchPageError catched'); // create a new page and try adding the bullet again await store.addJournalPage(JournalPa

February 12, 2019 at 06:08PM by elias burgstaller
http://bit.ly/2N2Vb7g