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

How to tell the device is rooted or an emulator
For security reasons, we need to check if the app is running on an emulator or a rooted device (to prevent access to sensitive data using root user)I there a package in Flutter that allows that? If not, Is anyone interested in creating one? I will contribute :)

April 07, 2019 at 03:58AM by ammaratef45
http://bit.ly/2Ig1lk8
New post on /r/flutterdev subreddit:

Dart dev tools for VScode just released
My friend told me about it (I haven't had the chance to try yet) but he says it's great, it's basically like the plugin for Intellij now.Just a little FYI for everyone

April 07, 2019 at 08:23AM by Cholojuanito
http://bit.ly/2OTEYlO
New post on /r/flutterdev subreddit:

Flutter Navigation cheatsheet (Navigator only) - A response to common Stackoverflow questions
http://bit.ly/2uPsWkb

April 07, 2019 at 10:45AM by Filledstacks
http://bit.ly/2ORAoV0
New post on /r/flutterdev subreddit:

edge_alert | A Flutter package that shows alert from top or bottom of the screen.
http://bit.ly/2KdesoL

April 07, 2019 at 10:42AM by Purple_Pizzazz
http://bit.ly/2OWhIDw
New post on /r/flutterdev subreddit:

mudeo: a social, multi-track music video recorder
http://bit.ly/2UBDlOL

April 07, 2019 at 02:29PM by hillel369
http://bit.ly/2KfoIwA
New post on /r/flutterdev subreddit:

FlutterForce — Week 21
http://bit.ly/2KfoYvy

April 07, 2019 at 01:58PM by flutterist
http://bit.ly/2UCXEeK
New post on /r/flutterdev subreddit:

Flutter media downloader
Hello everyone, so I'm new to Flutter Development, and I was wondering if there is an easy way to download media (mainly Image and Video) from network to local storage :I found this : https://pub.dartlang.org/packages/flutter_downloaderBut it seems like it's a little bit complicated to implement

April 07, 2019 at 05:34PM by yiss92
http://bit.ly/2U24ypy
New post on /r/flutterdev subreddit:

Flutter Create: Share your submissions!
Given how we are currently hours away from the submission deadline, I think it'd be great if we could have one place for everyone to come and view all the different Flutter Create submissions.​Feel free to post yours here!

April 07, 2019 at 11:55PM by MarkOSullivan
http://bit.ly/2U4766y
New post on Flutter Dev Google group:

ListView doesn't display content unless I append Container() to children
This: ListView( shrinkWrap: true, children: _dice + [Container()], //wtf? scrollDirection: Axis.horizontal, ) works. Without the `+ [Container()]` nothing shows. _dice is a GrowableList of Material widget trees. Took me ages to find this hack. Can anyone tell me what might be going on here?

April 08, 2019 at 01:50AM by Guyren Howe
http://bit.ly/2KpAqFk
New post on Flutter Dev Google group:

State can't access widget property
I have a StatefulWidget like this: class DiceRow extends StatefulWidget { final _RowState content = _RowState(); final RackState rack; DiceRow(this.rack); @override _RowState createState() => content; … } I can't refer to `widget.rack` from the _RowState object. I am told

April 08, 2019 at 04:06AM by Guyren Howe
http://bit.ly/2G6m8VO