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
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
X (formerly Twitter)
Dream11 (@Dream11) on X
Dream11 is India’s biggest Fantasy Sports platform with 20 Crore+ users offering 11 different sports.
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
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
Twitter
Flutter
Run your widget tests with `flutter run test/your_test.dart` (instead of `flutter test`) to see them execute on device. #FlutterFriday Read more → https://t.co/9m4838k3jn https://t.co/QUc26KwF8X
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
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
reddit
r/FlutterDev - When flutter jobs will start to appear?
11 votes and 9 comments so far on Reddit
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 ...
April 29, 2019 at 09:42PM by cip6791
http://bit.ly/2XYRFPD
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
reddit
r/FlutterDev - Filter Firestore stream
1 vote and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Firebase Login with “flutter_bloc”
http://bit.ly/2XYRIuN
April 29, 2019 at 09:28PM by EngineerScientist
http://bit.ly/2GTkcjN
Firebase Login with “flutter_bloc”
http://bit.ly/2XYRIuN
April 29, 2019 at 09:28PM by EngineerScientist
http://bit.ly/2GTkcjN
Medium
Firebase Login with “flutter_bloc”
Hey everyone! In this article we’re going to be building a Flutter Application which integrates with Firebase to to authenticate users as…
New post on /r/flutterdev subreddit:
GraphQL with Flutter
https://www.youtube.com/watch?v=f6jdoEtZt_o
April 30, 2019 at 05:35AM by nitishk72
http://bit.ly/2IZkiIa
GraphQL with Flutter
https://www.youtube.com/watch?v=f6jdoEtZt_o
April 30, 2019 at 05:35AM by nitishk72
http://bit.ly/2IZkiIa
YouTube
Flutter GraphQL Introduction
In this video I am talking about Flutter with GraphQL. In GraphQL you send the query to the server and server execute the query on the server at the run-time and give you response based on your query. GraphQL solves the problem of over and under fetching.…
New post on /r/flutterdev subreddit:
Draggable (Flutter Widget of the Week)
https://www.youtube.com/attribution_link?a=z2MIgr7VzZE&u=%2Fwatch%3Fv%3DQzA4c4QHZCY%26feature%3Dshare
April 30, 2019 at 06:35AM by Pixelreddit
http://bit.ly/2VBcqTQ
Draggable (Flutter Widget of the Week)
https://www.youtube.com/attribution_link?a=z2MIgr7VzZE&u=%2Fwatch%3Fv%3DQzA4c4QHZCY%26feature%3Dshare
April 30, 2019 at 06:35AM by Pixelreddit
http://bit.ly/2VBcqTQ
YouTube
Draggable (Flutter Widget of the Week)
Use Draggable to move and drag your widgets around. You can use it to build UIs for swapping around email addresses in an email or documents to a new folder....
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
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
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
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
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
reddit
r/FlutterDev - Flutter custom widget examples?
0 votes and 0 comments so far on Reddit
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
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
reddit
r/FlutterDev - What device specific issues currently community is facing for flutter app?
0 votes and 0 comments so far on Reddit
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
Facebook messenger UI in Flutter.
http://bit.ly/2Vvjtxq
April 30, 2019 at 12:48PM by follow2vivek
http://bit.ly/2GUe5f6
Blogspot
Flutter - Facebook messenger UI.
Create Facebook messenger UI in Flutter.
New post on /r/flutterdev subreddit:
Immutable Inherited Widget as Data Provider
https://www.youtube.com/watch?v=YIpWoNYkx90&feature=youtu.be
April 30, 2019 at 12:24PM by zaiste
http://bit.ly/2GJykei
Immutable Inherited Widget as Data Provider
https://www.youtube.com/watch?v=YIpWoNYkx90&feature=youtu.be
April 30, 2019 at 12:24PM by zaiste
http://bit.ly/2GJykei
YouTube
Flutter in Practice - E22: Immutable InheritedWidget as Data Provider
Flutter in Practice is a free programming course that teaches how to write a mobile application using Flutter framework and Dart programming language. Instea...
New post on /r/flutterdev subreddit:
IChoosedFlutter-Twitter Clone
http://bit.ly/2V88QRR
April 30, 2019 at 11:55AM by arslannmrv
http://bit.ly/2UN4zOt
IChoosedFlutter-Twitter Clone
http://bit.ly/2V88QRR
April 30, 2019 at 11:55AM by arslannmrv
http://bit.ly/2UN4zOt
Medium
Flutter Twitter Clone Part 1
I’ve been working on Flutter for a long time and it started to be a fun experience for me. It’s so easy to make an app with Flutter. Today…
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
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
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
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
IChoosedFlutter-Reddit UI Clone made with Flutter
http://bit.ly/2DEXgTs
April 30, 2019 at 01:38PM by arslannmrv
http://bit.ly/2V4Vztj
GitHub
arslannmrv/FlutterRedditClone
Contribute to arslannmrv/FlutterRedditClone development by creating an account on GitHub.
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
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
Dart Packages
flutter_barcode_scanner | Flutter Package
A plugin for barcode scanning support on Android and iOS. Supports barcodes, QR codes, etc.
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
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
Dart Packages
tutorial_coach_mark | Flutter Package
Guide that helps you to present your app and its features in a beautiful, simple and customizable way.
New post on /r/flutterdev subreddit:
Query to GraphQL in Flutter App [ New Video ]
https://youtu.be/Re7FPa3wzN0
April 30, 2019 at 04:40PM by nitishk72
http://bit.ly/2PCCMiS
Query to GraphQL in Flutter App [ New Video ]
https://youtu.be/Re7FPa3wzN0
April 30, 2019 at 04:40PM by nitishk72
http://bit.ly/2PCCMiS
YouTube
Flutter Query to GRAPHQL Server
In this video, I am showing how you can set up the GraphQL Client with Flutter Application and send a Query to the Server. I am using a readymade server of GraphQL ( https://countries.trevorblades.com/ ). This is public GraphQL server and anyone can use for…
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
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
reddit
r/FlutterDev - Is there a good tutorial on creating a “more” button on bottom nav
0 votes and 0 comments so far on Reddit
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
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
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.