New post on /r/flutterdev subreddit:
Date & Time picker (Tutorial)
https://www.youtube.com/watch?v=lEHMloCMMsw
April 30, 2019 at 10:23PM by JohannesMilke
http://bit.ly/2Lcmr5W
Date & Time picker (Tutorial)
https://www.youtube.com/watch?v=lEHMloCMMsw
April 30, 2019 at 10:23PM by JohannesMilke
http://bit.ly/2Lcmr5W
YouTube
Date & Time picker - Flutter
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
► Source code: https://github.com/JohannesMilke/date_and_time_picker
► Buy My Courses: https://johannesmilke.teachable.com/p/home
► Follow Twitter: ht…
► Source code: https://github.com/JohannesMilke/date_and_time_picker
► Buy My Courses: https://johannesmilke.teachable.com/p/home
► Follow Twitter: ht…
New post on Flutter Dev Google group:
PRENDE CAZZI IN CULO DI 30 CM: LUIGI BERLUSCONI (CON PADRE IL PEDOFILO SPAPPOLA MAGISTRATI, IL VERME
PRENDE CAZZI IN CULO DI 30 CM: LUIGI BERLUSCONI (CON PADRE IL PEDOFILO SPAPPOLA MAGISTRATI, IL VERME ASSASSINO SILVIO BERLUSCONI, CHE ORA HA FATTO AMMAZZARE ANCHE LA PER BENISSIMO IMANE FADIL, DOPO AVER FATTO LO STESSO CON EGIDIO VERZINI ED EMILIO RANDACIO, http://bit.ly/2Lcw58J
May 01, 2019 at 02:42AM by MARIAGRAZIA CRUPI EXLESBOAMANTEDI MARINA-BERLUSCONI
http://bit.ly/2VFBFo3
PRENDE CAZZI IN CULO DI 30 CM: LUIGI BERLUSCONI (CON PADRE IL PEDOFILO SPAPPOLA MAGISTRATI, IL VERME
PRENDE CAZZI IN CULO DI 30 CM: LUIGI BERLUSCONI (CON PADRE IL PEDOFILO SPAPPOLA MAGISTRATI, IL VERME ASSASSINO SILVIO BERLUSCONI, CHE ORA HA FATTO AMMAZZARE ANCHE LA PER BENISSIMO IMANE FADIL, DOPO AVER FATTO LO STESSO CON EGIDIO VERZINI ED EMILIO RANDACIO, http://bit.ly/2Lcw58J
May 01, 2019 at 02:42AM by MARIAGRAZIA CRUPI EXLESBOAMANTEDI MARINA-BERLUSCONI
http://bit.ly/2VFBFo3
New post on /r/flutterdev subreddit:
Widget for implementing multiple nested navigators with their own route stacks.
GitHubPluginUsage:
April 30, 2019 at 12:23AM by novah5
http://bit.ly/2ZLTFfS
Widget for implementing multiple nested navigators with their own route stacks.
GitHubPluginUsage:
class RootPage extends StatefulWidget { @override State<StatefulWidget> createState() => _RootPageState(); } class _RootPageState extends State<RootPage> { @override Widget build(BuildContext context) { return NestedNavigators( items: { NestedNavItemKey.blue: NestedNavigatorItem( initialRoute: Routes.blue, icon: Icons.access_time, text: "Blue", ), NestedNavItemKey.red: NestedNavigatorItem( initialRoute: Routes.red, icon: Icons.send, text: "Red", ), NestedNavItemKey.green: NestedNavigatorItem( initialRoute: Routes.green, icon: Icons.perm_identity, text: "Green", ), }, generateRoute: Routes.generateRoute, ); } }
April 30, 2019 at 12:23AM by novah5
http://bit.ly/2ZLTFfS
GitHub
n0vah/nested_navigators
Contribute to n0vah/nested_navigators development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Flutter Tutorial - Flutter DropdownButton with Firestore
https://www.youtube.com/watch?v=pAn3-cqJ9MM
May 01, 2019 at 06:39AM by whatsupcoders
http://bit.ly/2UQXBrG
Flutter Tutorial - Flutter DropdownButton with Firestore
https://www.youtube.com/watch?v=pAn3-cqJ9MM
May 01, 2019 at 06:39AM by whatsupcoders
http://bit.ly/2UQXBrG
YouTube
Flutter Tutorial - Flutter DropdownButton with Firestore
Flutter Tutorial - Flutter DropdownButton with Firestore
In this Video, we will see how to implement a dropdown feature in your Flutter Application and the available items in the dropdown
are not static, in fact, they are retrieved from the Firestore.
…
In this Video, we will see how to implement a dropdown feature in your Flutter Application and the available items in the dropdown
are not static, in fact, they are retrieved from the Firestore.
…
New post on /r/flutterdev subreddit:
How to handle zero data in Stream Builder with firestore in Flutter
Hello, I have question to handle zero data. For example bellow is my code. I want to show No data image, when there is no data from my collection, with filter. How can I do that? Thankschild: Card(
child: StreamBuilder<QuerySnapshot>(
stream: Firestore.instance.collection('xxxx).where('issuer', isEqualTo: xxx).orderBy("createdAt", descending: true).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 Column(
children:
snapshot.data.documents
.map((DocumentSnapshot document) {
return Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
children: <Widget>[
Container(
child: ListTile(onTap: (){
Navigator.pushNamed(context, 'xxxxx');
},
leading: Container(
decoration: BoxDecoration(
color: Colors.green,
borderRadius: new BorderRadius.all(Radius.circular(8.0))
),
width: 40,
height: 40,
child: document['status'] == 'pending' ? Icon(Icons.receipt, color: Colors.white,): Icon(Icons.account_balance_wallet, color: Colors.white)),
title: Text(xxxxx),
subtitle: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text("${xxxx}"),
Text("status: ${xxxx}")],
),
trailing: Icon(Icons.chevron_right, color: document['xxxxx'] == true ? Colors.grey: Colors.blue ,)
),
),
Divider()
],
),
);
}).toList(),);}
},
)
),
May 01, 2019 at 08:26AM by mochfauz
http://bit.ly/2J8JlZ9
How to handle zero data in Stream Builder with firestore in Flutter
Hello, I have question to handle zero data. For example bellow is my code. I want to show No data image, when there is no data from my collection, with filter. How can I do that? Thankschild: Card(
child: StreamBuilder<QuerySnapshot>(
stream: Firestore.instance.collection('xxxx).where('issuer', isEqualTo: xxx).orderBy("createdAt", descending: true).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 Column(
children:
snapshot.data.documents
.map((DocumentSnapshot document) {
return Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
children: <Widget>[
Container(
child: ListTile(onTap: (){
Navigator.pushNamed(context, 'xxxxx');
},
leading: Container(
decoration: BoxDecoration(
color: Colors.green,
borderRadius: new BorderRadius.all(Radius.circular(8.0))
),
width: 40,
height: 40,
child: document['status'] == 'pending' ? Icon(Icons.receipt, color: Colors.white,): Icon(Icons.account_balance_wallet, color: Colors.white)),
title: Text(xxxxx),
subtitle: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text("${xxxx}"),
Text("status: ${xxxx}")],
),
trailing: Icon(Icons.chevron_right, color: document['xxxxx'] == true ? Colors.grey: Colors.blue ,)
),
),
Divider()
],
),
);
}).toList(),);}
},
)
),
May 01, 2019 at 08:26AM by mochfauz
http://bit.ly/2J8JlZ9
reddit
r/FlutterDev - How to handle zero data in Stream Builder with firestore in Flutter
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Using SharedPreferences in Flutter
http://bit.ly/2UMAhjQ
May 01, 2019 at 10:25AM by ashishrawat2911
http://bit.ly/2GQtdJ6
Using SharedPreferences in Flutter
http://bit.ly/2UMAhjQ
May 01, 2019 at 10:25AM by ashishrawat2911
http://bit.ly/2GQtdJ6
Medium
Using SharedPreferences in Flutter
SharedPreferences is used for storing data key-value pair in the Android and iOS.
New post on /r/flutterdev subreddit:
Building a RealTime Stats Monitor App Using Flutter and Firebase
https://youtu.be/qa6A2TOqY0A
May 01, 2019 at 11:41AM by Filledstacks
http://bit.ly/2PGnSIl
Building a RealTime Stats Monitor App Using Flutter and Firebase
https://youtu.be/qa6A2TOqY0A
May 01, 2019 at 11:41AM by Filledstacks
http://bit.ly/2PGnSIl
YouTube
Build a RealTime Stats Monitor App Using Flutter and Firebase
This tutorial shows how I build a Realtime stats monitor using Firebase and Flutter. The stats are from my new product AppSkeletons (https://www.appskeletons.com/)
Firebase setup guide: https://firebase.google.com/docs/flutter/setup
Written Tutorial: h…
Firebase setup guide: https://firebase.google.com/docs/flutter/setup
Written Tutorial: h…
New post on /r/flutterdev subreddit:
Flutter Drag & Drop for Two-Year-Olds
https://youtu.be/KOh6CkX-d6U
May 01, 2019 at 07:15PM by EngineerScientist
http://bit.ly/2LuRnPd
Flutter Drag & Drop for Two-Year-Olds
https://youtu.be/KOh6CkX-d6U
May 01, 2019 at 07:15PM by EngineerScientist
http://bit.ly/2LuRnPd
YouTube
Flutter Drag & Drop for Two-Year-Olds
Build a drag & drop 🖖 UI in the form of a simple color-matching kid's game. Master the basics of Flutter's Draggable and DragTarget widgets https://fireship.io/lessons/flutter-drag-and-drop-basics/
- Draggable https://docs.flutter.io/flutter/widgets/Draggable…
- Draggable https://docs.flutter.io/flutter/widgets/Draggable…
New post on /r/flutterdev subreddit:
frideos_kvprx | A Flutter package to easily store key/value pairs and stream based classes to update the UI accordingly.
https://pub.dartlang.org/packages/frideos_kvprxIt is just the very first version. Any suggestion or feedback is really appreciated.
May 02, 2019 at 12:27AM by frideosapps
http://bit.ly/2LjTSDC
frideos_kvprx | A Flutter package to easily store key/value pairs and stream based classes to update the UI accordingly.
https://pub.dartlang.org/packages/frideos_kvprxIt is just the very first version. Any suggestion or feedback is really appreciated.
May 02, 2019 at 12:27AM by frideosapps
http://bit.ly/2LjTSDC
Dart Packages
frideos_kvprx | Flutter Package
A library with persistent and reactive classes, and key/value pairs storing helpers, using the sqflite plugin.
New post on /r/flutterdev subreddit:
How to create button animation with Flare in Flutter? Part 2: Animations with TrimPath
http://bit.ly/2VBforz
May 01, 2019 at 11:55PM by Purple_Pizzazz
http://bit.ly/2LjTWmQ
How to create button animation with Flare in Flutter? Part 2: Animations with TrimPath
http://bit.ly/2VBforz
May 01, 2019 at 11:55PM by Purple_Pizzazz
http://bit.ly/2LjTWmQ
Medium
How to create button animation with Flare in Flutter? Part 2: Animations with TrimPath
This is a series of articles in which we’ll go through the process of creating animation in Flutter using Flare. In this article we’ll…
New post on /r/flutterdev subreddit:
Notifications
Is anybody use Local and Push notifications simultaneously in the flutter app?
May 01, 2019 at 11:17PM by mrLisin
http://bit.ly/2J5ea0S
Notifications
Is anybody use Local and Push notifications simultaneously in the flutter app?
May 01, 2019 at 11:17PM by mrLisin
http://bit.ly/2J5ea0S
reddit
r/FlutterDev - Notifications
0 votes and 1 comment so far on Reddit
New post on /r/flutterdev subreddit:
Widget for implementing multiple nested navigators with their own route stacks.
http://bit.ly/2GytUYO
May 01, 2019 at 09:55PM by novah5
http://bit.ly/2WggyWo
Widget for implementing multiple nested navigators with their own route stacks.
http://bit.ly/2GytUYO
May 01, 2019 at 09:55PM by novah5
http://bit.ly/2WggyWo
Dart packages
nested_navigators | Flutter Package
Flutter widget for implementing multiple nested navigators with their own route stacks.
New post on Flutter Dev Google group:
Speech Recognition from MP3 or WAV file?
I would like to record speech and then feed it to speech recognition library, or have the library stream the mic data so I can store it. I found this package: http://bit.ly/2skDMiM I dont see anything in the packae where I can feed it a wav file, or have it stream
May 02, 2019 at 06:36AM by cameron...@gmail.com
http://bit.ly/2WpvFx3
Speech Recognition from MP3 or WAV file?
I would like to record speech and then feed it to speech recognition library, or have the library stream the mic data so I can store it. I found this package: http://bit.ly/2skDMiM I dont see anything in the packae where I can feed it a wav file, or have it stream
May 02, 2019 at 06:36AM by cameron...@gmail.com
http://bit.ly/2WpvFx3
Dart Packages
speech_recognition | Flutter Package
A flutter plugin to use the speech recognition on iOS and Android
New post on Flutter Dev Google group:
Implementation of "flutter_webview_plugin".
Hi Can anyone help me on Implementation of "flutter_webview_plugin". To use webview delegate methods { shouldStart, startLoad, finishLoad, abortLoad } in fliutter. If any possibilities please provide me simple example. Thanks & Regards G Rajkumar iOS Developer
May 02, 2019 at 12:45PM by rajkumar.g...@gmail.com
http://bit.ly/2IX8gQn
Implementation of "flutter_webview_plugin".
Hi Can anyone help me on Implementation of "flutter_webview_plugin". To use webview delegate methods { shouldStart, startLoad, finishLoad, abortLoad } in fliutter. If any possibilities please provide me simple example. Thanks & Regards G Rajkumar iOS Developer
May 02, 2019 at 12:45PM by rajkumar.g...@gmail.com
http://bit.ly/2IX8gQn
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:
Created login page ui reference uplabs.
http://bit.ly/2DJekb4
May 02, 2019 at 12:33PM by follow2vivek
http://bit.ly/2WhUsTD
Created login page ui reference uplabs.
http://bit.ly/2DJekb4
May 02, 2019 at 12:33PM by follow2vivek
http://bit.ly/2WhUsTD
Blogspot
Flutter - Uplabs login UI design.
Created login page ui in Flutter, reference taken from uplabs website.
New post on /r/flutterdev subreddit:
Flutter representation of a Sales APP UI from Uplabs
http://bit.ly/2UY3HGQ
May 02, 2019 at 03:55PM by JideGuru
http://bit.ly/2UV7Fjy
Flutter representation of a Sales APP UI from Uplabs
http://bit.ly/2UY3HGQ
May 02, 2019 at 03:55PM by JideGuru
http://bit.ly/2UV7Fjy
GitHub
JideGuru/SalesApp
Just a Flutter implementation of a UI i found on Uplabs - JideGuru/SalesApp
New tweet from FlutterDev:
Are you wondering what’s happening on the 1st June? Look no further. Its #Hack19 - the first ever International Flutter Hackathon! Find out more on https://t.co/O0TlVAHOMr@FlutterComm @FlutterDev #Flutter— Flutter Community (@FlutterComm) May 2, 2019
May 02, 2019 at 05:48PM
http://twitter.com/FlutterDev/status/1123977689545809922
Are you wondering what’s happening on the 1st June? Look no further. Its #Hack19 - the first ever International Flutter Hackathon! Find out more on https://t.co/O0TlVAHOMr@FlutterComm @FlutterDev #Flutter— Flutter Community (@FlutterComm) May 2, 2019
May 02, 2019 at 05:48PM
http://twitter.com/FlutterDev/status/1123977689545809922
Twitter
#hack19 hashtag on Twitter
See Tweets about #hack19 on Twitter. See what people are saying and join the conversation.
New post on /r/flutterdev subreddit:
Continuous integration and delivery for Flutter with Firebase
http://bit.ly/2ZNhmo1
May 02, 2019 at 05:49PM by Gigatronbot
http://bit.ly/2Y1qmnK
Continuous integration and delivery for Flutter with Firebase
http://bit.ly/2ZNhmo1
May 02, 2019 at 05:49PM by Gigatronbot
http://bit.ly/2Y1qmnK
Codemagic blog
Practical guide: Flutter + Firebase + Codemagic
See how to integrate Firebase with your Flutter app and securely set it up on Codemagic.
New post on /r/flutterdev subreddit:
#Hack19 - International Flutter Hackathon - Saturday, June 1st 2019
http://bit.ly/2JaDoeh
May 02, 2019 at 08:24PM by MarkOSullivan
http://bit.ly/2IVxHSj
#Hack19 - International Flutter Hackathon - Saturday, June 1st 2019
http://bit.ly/2JaDoeh
May 02, 2019 at 08:24PM by MarkOSullivan
http://bit.ly/2IVxHSj
#Hack19 - International Flutter Hackathon - Saturday, June 1st 2019
Join us on Saturday, June 1st 2019 for the first ever all-day International Flutter™ Hackathon organised by over 2 dozen communities worldwide. #Flutter #FlutterWeb
New post on Flutter Dev Google group:
examples of integrating GCP Vision API with Flutter?
Do we have any examples or documentation of integrating GCP AutoML Cloud or Edge models in a flutter app? In a Linux application, when making an online prediction using the Vision API or my trained AutoML model from an https request, a token is generated using the gcloud SDK from a service
May 02, 2019 at 10:16PM by Randall Rhea
http://bit.ly/2Wjwya9
examples of integrating GCP Vision API with Flutter?
Do we have any examples or documentation of integrating GCP AutoML Cloud or Edge models in a flutter app? In a Linux application, when making an online prediction using the Vision API or my trained AutoML model from an https request, a token is generated using the gcloud SDK from a service
May 02, 2019 at 10:16PM by Randall Rhea
http://bit.ly/2Wjwya9
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.