New post on /r/flutterdev subreddit:
Alert dialog form to collect information?
I'd like to create a popup that greys out the current page (very much like the alert dialog) and displays a form to fill out. It should also be scrollable if needed.Is it possible?Any help is appreciated.Thanks!
February 09, 2019 at 09:51PM by SocialMammoth
http://bit.ly/2Buu0O0
Alert dialog form to collect information?
I'd like to create a popup that greys out the current page (very much like the alert dialog) and displays a form to fill out. It should also be scrollable if needed.Is it possible?Any help is appreciated.Thanks!
February 09, 2019 at 09:51PM by SocialMammoth
http://bit.ly/2Buu0O0
reddit
r/FlutterDev - Alert dialog form to collect information?
1 vote and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
How to deeplink into the Facebook app
I had a really hard time figuring out how to launch the Facebook app to a specified profile or page, while falling back to a webview if the app is not installed. Now that I figured it out, I thought I'd share my technique.You'll need the url_launcher package, and you'll need to know the FBID of the profile/page you want to launch. I used https://findmyfbid.com/ but there are plenty of other ways. #### represents the FBID.Then you'll construct two URLs: fbProtocolUrl = "fb://profile/####"; for a profile or fbProtocolUrl = "fb://page/####"; for a page, plus a fallback: fallbackUrl = "https://www.facebook.com/####"; (this one is the same regardless of profile/page, and you can also use https://www.facebook.com/reddit etc. if you want, but the fb:// one seemingly has to be by ID.Then:
February 09, 2019 at 10:16PM by jonah214
http://bit.ly/2GwZKp7
How to deeplink into the Facebook app
I had a really hard time figuring out how to launch the Facebook app to a specified profile or page, while falling back to a webview if the app is not installed. Now that I figured it out, I thought I'd share my technique.You'll need the url_launcher package, and you'll need to know the FBID of the profile/page you want to launch. I used https://findmyfbid.com/ but there are plenty of other ways. #### represents the FBID.Then you'll construct two URLs: fbProtocolUrl = "fb://profile/####"; for a profile or fbProtocolUrl = "fb://page/####"; for a page, plus a fallback: fallbackUrl = "https://www.facebook.com/####"; (this one is the same regardless of profile/page, and you can also use https://www.facebook.com/reddit etc. if you want, but the fb:// one seemingly has to be by ID.Then:
try { bool launched = await launch(fbProtocolUrl, forceSafariVC: false); if (!launched) { await launch(fallbackUrl, forceSafariVC: false); } } catch (e) { await launch(fallbackUrl, forceSafariVC: false); }We do not use await canLaunch() because it produces false for the fb:// URL even if that URL will actually work with launch(). The if (!launched) branch runs on iOS if the Facebook native app isn't installed, while the catch block runs on Android if the Facebook native app isn't installed.This works on both Android and iOS, with or without the Facebook native app installed. It's the simplest way I could find that met all of those criteria. Hope this helps!
February 09, 2019 at 10:16PM by jonah214
http://bit.ly/2GwZKp7
Facebook
Facebook – log in or sign up
Log in to Facebook to start sharing and connecting with your friends, family and people you know.
New post on Flutter Dev Google group:
Using Firebase Plugins while supporting >18 SDKs
Hello everyone! I have been stuck at an issue for several hours with no respite and I need help! Yes, I have religiously followed all the recommended suggestions and its becoming a little bit tiring. So, I am following the official recommendations of adding firebase to a brand new flutter
February 09, 2019 at 11:46PM by Olawale Alabi
http://bit.ly/2GisSkD
Using Firebase Plugins while supporting >18 SDKs
Hello everyone! I have been stuck at an issue for several hours with no respite and I need help! Yes, I have religiously followed all the recommended suggestions and its becoming a little bit tiring. So, I am following the official recommendations of adding firebase to a brand new flutter
February 09, 2019 at 11:46PM by Olawale Alabi
http://bit.ly/2GisSkD
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: YouTube Search 02 - Fetching Search Data - BLoC Tutorial Course
https://www.youtube.com/watch?v=K07R-dqy-hU
February 10, 2019 at 01:14AM by Purple_Pizzazz
http://bit.ly/2RTTtpq
Flutter: YouTube Search 02 - Fetching Search Data - BLoC Tutorial Course
https://www.youtube.com/watch?v=K07R-dqy-hU
February 10, 2019 at 01:14AM by Purple_Pizzazz
http://bit.ly/2RTTtpq
YouTube
Flutter: YouTube Search 02 - Fetching Search Data - BLoC Tutorial Course
📗 Get the code from this part 👇👇
https://resocoder.com/flutter-youtube-search-02
Welcome back to the 2nd part of the Flutter YouTube Search tutorial course. In the last part we've set up the YouTube API and created the search model classes using the built_value…
https://resocoder.com/flutter-youtube-search-02
Welcome back to the 2nd part of the Flutter YouTube Search tutorial course. In the last part we've set up the YouTube API and created the search model classes using the built_value…
New post on /r/flutterdev subreddit:
Google_maps_flutter markers as widgets
I just don't see why the markers have to be images instead of Widgets? Widgets are the most powerful building block in Flutter but for some reason we can not make our custom dynamically generated markers on the map. At the same time we can use the google_maps_flutter widget just like any other one and even can put it in a scrollable list view.
February 10, 2019 at 03:31AM by aytunch
http://bit.ly/2MW1E3X
Google_maps_flutter markers as widgets
I just don't see why the markers have to be images instead of Widgets? Widgets are the most powerful building block in Flutter but for some reason we can not make our custom dynamically generated markers on the map. At the same time we can use the google_maps_flutter widget just like any other one and even can put it in a scrollable list view.
February 10, 2019 at 03:31AM by aytunch
http://bit.ly/2MW1E3X
reddit
r/FlutterDev - Google_maps_flutter markers as widgets
2 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Do you think that bloc package is a good way to implement BLoC pattern in my apps? http://bit.ly/2T34XIs
No text found
February 10, 2019 at 05:03AM by Basketball-ICO
http://bit.ly/2teaCAl
Do you think that bloc package is a good way to implement BLoC pattern in my apps? http://bit.ly/2T34XIs
No text found
February 10, 2019 at 05:03AM by Basketball-ICO
http://bit.ly/2teaCAl
reddit
r/FlutterDev - Do you think that bloc package is a good way to implement BLoC pattern in my apps? https://pub.dartlang.org/packages/bloc
1 vote and 1 comment so far on Reddit
New post on /r/flutterdev subreddit:
Beginner dev trying to implement an audio recording library
I only have hours of experience and am trying to implement this:https://github.com/ZaraclaJ/audio_recorderI am currently piggybacking of Android Studio's example (increment counter).However I am having trouble with the following line:AudioRecorder.start(path: _controller.text, audioOutputFormat: AudioOutputFormat.AAC);What is "path: _controller.text" supposed to be?
February 10, 2019 at 04:38AM by kulrajwashere
http://bit.ly/2E3DKk5
Beginner dev trying to implement an audio recording library
I only have hours of experience and am trying to implement this:https://github.com/ZaraclaJ/audio_recorderI am currently piggybacking of Android Studio's example (increment counter).However I am having trouble with the following line:AudioRecorder.start(path: _controller.text, audioOutputFormat: AudioOutputFormat.AAC);What is "path: _controller.text" supposed to be?
February 10, 2019 at 04:38AM by kulrajwashere
http://bit.ly/2E3DKk5
GitHub
GitHub - ZaraclaJ/audio_recorder
Contribute to ZaraclaJ/audio_recorder development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
FlutterForce — Week 13
http://bit.ly/2SpPoi7
February 10, 2019 at 08:50AM by flutterist
http://bit.ly/2RQnOFt
FlutterForce — Week 13
http://bit.ly/2SpPoi7
February 10, 2019 at 08:50AM by flutterist
http://bit.ly/2RQnOFt
Medium
FlutterForce — #Week 13
Weekly Flutter Resources
New post on /r/flutterdev subreddit:
Collapsible Sidebar and Navigation Drawer
https://youtu.be/2SjvhAUR9aw
February 10, 2019 at 08:47AM by prateeksharma1712
http://bit.ly/2RRXACk
Collapsible Sidebar and Navigation Drawer
https://youtu.be/2SjvhAUR9aw
February 10, 2019 at 08:47AM by prateeksharma1712
http://bit.ly/2RRXACk
YouTube
Collapsible Sidebar and Navigation Drawer | Flutter UI
Mocking a design from dribbble in Flutter
In this video, I have created a collapsible drawer/sidebar which can be used as a drawer or anywhere in the body of the scaffold. It can collapse and expand. It can stick on the screen or completely vanish from the…
In this video, I have created a collapsible drawer/sidebar which can be used as a drawer or anywhere in the body of the scaffold. It can collapse and expand. It can stick on the screen or completely vanish from the…
New post on /r/flutterdev subreddit:
Is Google planning on releasing Tensorflow Lite for flutter at all?
So, I really like Flutter and I'm planning on creating an app for my AI-related projects on flutter. And I know that there are Plugin packages for accessing TensorFlow Lite API developed by the community but is Google planning on creating Tensorflow Lite at all for Flutter?
February 10, 2019 at 08:46AM by yunikmaha
http://bit.ly/2WSQ6D6
Is Google planning on releasing Tensorflow Lite for flutter at all?
So, I really like Flutter and I'm planning on creating an app for my AI-related projects on flutter. And I know that there are Plugin packages for accessing TensorFlow Lite API developed by the community but is Google planning on creating Tensorflow Lite at all for Flutter?
February 10, 2019 at 08:46AM by yunikmaha
http://bit.ly/2WSQ6D6
reddit
r/FlutterDev - Is Google planning on releasing Tensorflow Lite for flutter at all?
2 votes and 0 comments so far on Reddit
New post on Flutter Dev Google group:
Flutter RTMP Broadcast from mobile camera
I would like to is their any availability with flutter to Broadcast an rtmp stream from mobile camera
February 10, 2019 at 09:57AM by ponnamk...@gmail.com
http://bit.ly/2DAyCCL
Flutter RTMP Broadcast from mobile camera
I would like to is their any availability with flutter to Broadcast an rtmp stream from mobile camera
February 10, 2019 at 09:57AM by ponnamk...@gmail.com
http://bit.ly/2DAyCCL
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:
Recommended branch for production?
Hi all, just wanted to get some feedback to which branch is recommended for an app that will go live into production shortly. Right now I am using STABLE, but I noticed that there are some fixes in MASTER that I would like to take advantage of. Should I wait until those fixes are promoted to the STABLE branch, or switch over to MASTER?The fixes are nothing that I can't live without, but would be nice to incorporate them. I prefer a stable app, and if MASTER is not stable enough I prefer to stay in STABLE. Recommendations?
February 10, 2019 at 10:20AM by mightybob4611
http://bit.ly/2GxMC3c
Recommended branch for production?
Hi all, just wanted to get some feedback to which branch is recommended for an app that will go live into production shortly. Right now I am using STABLE, but I noticed that there are some fixes in MASTER that I would like to take advantage of. Should I wait until those fixes are promoted to the STABLE branch, or switch over to MASTER?The fixes are nothing that I can't live without, but would be nice to incorporate them. I prefer a stable app, and if MASTER is not stable enough I prefer to stay in STABLE. Recommendations?
February 10, 2019 at 10:20AM by mightybob4611
http://bit.ly/2GxMC3c
reddit
r/FlutterDev - Recommended branch for production?
1 vote and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Flutter: Face ID & Touch ID/Fingerprint Local Auth | AndroidX
https://youtu.be/w0-UB7rx8TA
February 10, 2019 at 09:57AM by imthepk
http://bit.ly/2N2pTxu
Flutter: Face ID & Touch ID/Fingerprint Local Auth | AndroidX
https://youtu.be/w0-UB7rx8TA
February 10, 2019 at 09:57AM by imthepk
http://bit.ly/2N2pTxu
YouTube
Flutter: Face ID & Touch ID/Fingerprint Local Auth | AndroidX | Full HD
In this video, I will explain how to use your device's fingerprint/touch id or face id to authenticate your flutter app for Android and ios with the demo.
#Flutter #FaceID #Fingerprint
Please give stars for this project on git and like the video.
Source…
#Flutter #FaceID #Fingerprint
Please give stars for this project on git and like the video.
Source…
New post on /r/flutterdev subreddit:
How to push data between Microsoft SQL server and local storage
Hi, I am new for Flutter. I have a task to complete. My task is store data in local storage and after connecting internet push new data in local storage save on the mssql server. Is it possible? How do I do it?
February 10, 2019 at 11:34AM by bisampath96
http://bit.ly/2MZ6GfR
How to push data between Microsoft SQL server and local storage
Hi, I am new for Flutter. I have a task to complete. My task is store data in local storage and after connecting internet push new data in local storage save on the mssql server. Is it possible? How do I do it?
February 10, 2019 at 11:34AM by bisampath96
http://bit.ly/2MZ6GfR
reddit
r/FlutterDev - How to push data between Microsoft SQL server and local storage
1 vote and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Matt Sullivan | It's All Widgets! Flutter Podcast
http://bit.ly/2SkFSwB
February 10, 2019 at 12:56PM by hillel369
http://bit.ly/2I2QLP2
Matt Sullivan | It's All Widgets! Flutter Podcast
http://bit.ly/2SkFSwB
February 10, 2019 at 12:56PM by hillel369
http://bit.ly/2I2QLP2
It's All Widgets!
Matt Sullivan | It's All Widgets!
Matt works for Google on the Flutter team and is a pretty lucky guy: he gets to spend his days rummaging around Flutter, building apps, and messing around making YouTube videos. Seriously, that's his job.
New post on Flutter Dev Google group:
How to push data between Microsoft SQL server and local storage
I am new for Flutter. I have a task to complete. My task is store data in local storage and after connecting internet push new data in local storage save on the MSSQL server. Is it possible? How do I do it?
February 10, 2019 at 01:28PM by Bhanuka Isuru
http://bit.ly/2BqZ4yg
How to push data between Microsoft SQL server and local storage
I am new for Flutter. I have a task to complete. My task is store data in local storage and after connecting internet push new data in local storage save on the MSSQL server. Is it possible? How do I do it?
February 10, 2019 at 01:28PM by Bhanuka Isuru
http://bit.ly/2BqZ4yg
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:
YA Introduction to Fundamentals of Stateful Widgets
https://youtu.be/owwpUSQ58lM
February 10, 2019 at 01:25PM by moephan
http://bit.ly/2TBY55n
YA Introduction to Fundamentals of Stateful Widgets
https://youtu.be/owwpUSQ58lM
February 10, 2019 at 01:25PM by moephan
http://bit.ly/2TBY55n
YouTube
Fundamentals of Stateful Widgets
Explaining Stateful Widgets for the new Flutter developer. Rapido is a Rapid Application Development framework for Flutter. https://github.com/rapido-mobile ...
New post on /r/flutterdev subreddit:
Flutter in-app purchases (part 1)
http://bit.ly/2RPmX7T
February 10, 2019 at 03:00PM by mulderpf
http://bit.ly/2RPiBxG
Flutter in-app purchases (part 1)
http://bit.ly/2RPmX7T
February 10, 2019 at 03:00PM by mulderpf
http://bit.ly/2RPiBxG
New post on /r/flutterdev subreddit:
Tutorial repository?
Hey seeing this sub is lit and everyday we have new tutorials ranging from simple widgets to very complex apps, I'm wondering, do / could we have a repository that aggregates all this content? It would be absolutely awesome.
February 10, 2019 at 03:44PM by nnnightmare
http://bit.ly/2MYkXtl
Tutorial repository?
Hey seeing this sub is lit and everyday we have new tutorials ranging from simple widgets to very complex apps, I'm wondering, do / could we have a repository that aggregates all this content? It would be absolutely awesome.
February 10, 2019 at 03:44PM by nnnightmare
http://bit.ly/2MYkXtl
reddit
r/FlutterDev - Tutorial repository?
2 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Handling Flutter errors with Catcher
http://bit.ly/2MWlxrm
February 10, 2019 at 05:52PM by jhomlala
http://bit.ly/2SJofpy
Handling Flutter errors with Catcher
http://bit.ly/2MWlxrm
February 10, 2019 at 05:52PM by jhomlala
http://bit.ly/2SJofpy
Medium
Handling Flutter errors with Catcher
Handling errors is everyday programmer job. This job is done infinite times in daily work. In Dart we can handle it easily with try-catch…