Flutter Heroes
25.8K subscribers
272 photos
2 videos
31.1K links
Download Telegram
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
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:
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
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
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
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
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
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
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
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
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
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
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
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
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