Flutter Heroes
25.8K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New tweet from FlutterDev:

Congratulations to @Dream11 for becoming India's first gaming unicorn 🎮🦄 valued over $1B!

Check out their use of Flutter on their app → https://t.co/OOTUISxZNq
Read the article here ↓ https://t.co/rDyBKx86IQ— Flutter (@FlutterDev) April 29, 2019

April 29, 2019 at 09:17PM
http://twitter.com/FlutterDev/status/1122943022625222657
New post on Flutter Dev Google group:

Why do widget tests look smaller on actual device and simulator?
Hello, We are learning widget testing and come across this advise: https://twitter.com/flutterdev/status/1038114431325163521?lang=en When we try to run our widget test using flutter run test/your_test.dart, it appeared smaller in the device and not the actual size of the app when installed on an

April 29, 2019 at 09:33PM by vaban
http://bit.ly/2V5w0rM
New post on /r/flutterdev subreddit:

When flutter jobs will start to appear?
When flutter jobs will start to appear? And, what are the salaries expectations compared to Android and iOS? Your opinion.

April 29, 2019 at 10:19PM by abbasseldoor
http://bit.ly/2PKiQLf
New post on /r/flutterdev subreddit:

Filter Firestore stream
HI. If I wanted to filter a Firestore collection based on document title what would be my best option? I thought of something like this: 1. Get collection. 2. Save collection in state as original and current collection. 3. Filter collection from state based on characters in title. 4. Set new filtered state which will refresh the document list.I'm not sure how to set the documents stream in state. So in case I have a widget like this ...​
Widget build(BuildContext context) { return StreamBuilder<QuerySnapshot>( stream: Firestore.instance.collection('content').snapshots(), builder: (BuildContext context, AsyncSnapshot<QuerySnapshot> snapshot) { if (snapshot.hasError) return new Text('Error: ${snapshot.error}'); switch (snapshot.connectionState) { case ConnectionState.waiting: return new Text('Loading...'); default: return new ListView( children: snapshot.data.documents.map((DocumentSnapshot document) { return new ListTile( title: new Text(document['term']), ); }).toList(), ); } }, ); } 
When returning new `Listview` I should also save the list to state. I want to show a search form as well as a list of documents below it. I also have a `TextField` and `_searchHandler()` which captures what is being typed. That's where I should filter the current documents from state and set a new state with results. Right?
TextField( onChanged: (value) { _searchHandler(); }, controller: _searchController, decoration: InputDecoration( labelText: "Search", hintText: "Search", prefixIcon: Icon(Icons.search), border: OutlineInputBorder( borderRadius: BorderRadius.all( Radius.circular(15.0), ), ), ), ), 


April 29, 2019 at 09:42PM by cip6791
http://bit.ly/2XYRFPD
New post on Flutter Dev Google group:

ConnectivityPlugin.java uses or overrides a deprecated API
Hi. I installed the latest Flutter and dart and Android Studio. I have login page before login I checked internet available or not using connectivity plugin. when running flutter run application working well. when running flutter build apkafterthat running flutter install this warning

April 30, 2019 at 10:29AM by Bhanuka Isuru
http://bit.ly/2J3Mvxj
New post on /r/flutterdev subreddit:

Flutter custom widget examples?
Hello Community,​I'm relatively new to mobile apps development (started in January with Android studio Java), and even more of a noob when it comes to flutter (Started two days ago). So far, it feels like I jumped 10 years in the future...​Anyways, the new concept of Widget inside a widget inside a widget (widgetception) is quite challenging to wrap my mind around. Specifically, when it comes to creating a custom widget, I struggle to rapidly identify all the different layers required to obtain the expected result.​Is there, anywhere on the web, a sort of gallery of custom widgets, detailing the different elements used to create them?I'm not looking for ready-to-use copy and paste solutions, just inspiration. I currently use Pinterest to find Material design examples, but this doesn't provide information about the widget used (most of the examples aren't even made with flutter).​Thanks,
Eric

April 30, 2019 at 10:37AM by EricDev_fr
http://bit.ly/2ZHvsXP
New post on /r/flutterdev subreddit:

What device specific issues currently community is facing for flutter app?
Can you post in formatDeviceOS versionFlutter versionGitHub issueFixes/AlternativesComments

April 30, 2019 at 01:04PM by Sungodragon
http://bit.ly/2LaPk2t
New post on /r/flutterdev subreddit:

Facebook messenger UI in Flutter.
http://bit.ly/2Vvjtxq

April 30, 2019 at 12:48PM by follow2vivek
http://bit.ly/2GUe5f6
New post on Flutter Dev Google group:

Is there any delegate methods for webview_flutter(Library)
Hi Is there any Delegate methods for webview_flutter. . (Ex: when we open a webpage with some quiz content how we can store the answers to server.) Can anyone help for this. Thanks&Regards G Rajkumar

April 30, 2019 at 01:11PM by rajkumar.g...@gmail.com
http://bit.ly/2IObkyh
New post on /r/flutterdev subreddit:

IChoosedFlutter-Reddit UI Clone made with Flutter
http://bit.ly/2DEXgTs

April 30, 2019 at 01:38PM by arslannmrv
http://bit.ly/2V4Vztj
New post on Flutter Dev Google group:

I want to scan barcode
does anyone know a fast plugin for scanning barcode I tried this http://bit.ly/2G8NDwB but it's not fast

April 30, 2019 at 02:26PM by Sherif Hassan
http://bit.ly/2DGhJXR
New post on /r/flutterdev subreddit:

Guide that helps you to present your app and its features in a beautiful, simple and customizable way.
http://bit.ly/2UNnBEp

April 30, 2019 at 02:20PM by rafaelbarbosatec
http://bit.ly/2ZMzUV9
New post on /r/flutterdev subreddit:

Is there a good tutorial on creating a “more” button on bottom nav
I have tried both the standard bottom nav and bmnav and I just wanted to created a more button to pop out from the bottom so I can show the few more items without sending it to a new page with links.

April 30, 2019 at 05:41PM by Sh-t_Shower_Shave
http://bit.ly/2USmZgS
New post on Flutter Dev Google group:

Any support for the microphone in iOS?
I am using package:mic_stream/mic_stream.dart for android - but this is not supported in iOS. Anyway to get a stream from the mic in iOS? thanks

April 30, 2019 at 07:06PM by cameron...@gmail.com
http://bit.ly/2vuxwVf