Flutter Heroes
25.8K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on /r/flutterdev subreddit:

Flutter Firebase Error
Does anyone get the build gradle error when adding firebase SDK? I keep getting it.. Also I followed the androidx solution but gives new error about multidex, I also followed that solution but now it's stuck loading and sometimes it will just stop building. How do I fix this?

April 24, 2019 at 06:25PM by 5work
http://bit.ly/2UUt5Cn
New tweet from FlutterDev:

👋 𝐇𝐄𝐋𝐋𝐎 𝐖𝐎𝐑𝐋𝐃! 👋

We just launched our brand new Instagram! Follow us now to stay in tune with your fellow developers around the globe.

Check it out → https://t.co/Rrhsqo2mQ9 pic.twitter.com/62QX35iFjb— Google Developers (@googledevs) April 24, 2019

April 24, 2019 at 11:12PM
http://twitter.com/FlutterDev/status/1121159971054297089
New post on /r/flutterdev subreddit:

Flutter GPS support?
Hi everyone! I'm a junior web developer (experienced in React, Node.js) dabbling into mobile for the first time and wanted to build a transit app that works on top of the Google Maps API and is able to track the user moving around.Are there any good APIs that would allow me to set a route and spoof movement? Also what kind of back-end would be recommended for an app like this?

April 25, 2019 at 04:56AM by cieltan
http://bit.ly/2GxuqF4
New post on /r/flutterdev subreddit:

DAE think the official Flutter class on Udacity is pretty weak?
Rudimentary lectures, only two sections, and not really in-depth enough for a newbie to complete the exercises in full. You’re better off watching the lectures, reading the documentation, and reverse engineering the exercise solutions to understand the layout system from there.

April 25, 2019 at 05:53AM by IAmApocryphon
http://bit.ly/2UVIWRc
New post on /r/flutterdev subreddit:

Resuming state
Hi I have one button in my home screen when clicking that button..it will open a new page with webview widget.(ex.webview widget initial URL is google,so it will open google.com).After that I am doing some interaction with that webpage,then Clicking back button will take me to home screen.If I click the button now,I want to open webview with resume interaction.(ex. I click on that button and it takes me google then I search for 'computer' in Google and it shows me the results.now clicking back button will take me home screen.again now I click on home screen button it will have to open webview with computer searched results).any idea?

April 25, 2019 at 05:46AM by tamil0014
http://bit.ly/2DvK5Ea
New post on /r/flutterdev subreddit:

I release a Flutter application. Simple, scan & discover if you eat healthy ... (Be nice I start with Dart and Flutter 😁)
http://bit.ly/2IFEbES

April 25, 2019 at 07:10AM by qsvtr
http://bit.ly/2VndBpJ
New post on Flutter Dev Google group:

[Android Build] Can not build the apk
Hi all, I'm facing the problem when tried to build android apk. I got that: *Process 'command '/Users/johnny/Johnny-center/Works/Flutter/development/flutter/bin/flutter'' finished with non-zero exit value 1* -> It was failing in flutter core. I'm using this command like to build apk:

April 25, 2019 at 09:06AM by Johnny Le
http://bit.ly/2DJ2hun
New post on Flutter Dev Google group:

How to display the pdf file in flutter application
Hi I have a doubt regarding Can we load the pdf url in webview_flutter framework.(When i'm doing page is loading but pdf is not visible). Can anyone suggest the solution for it. and also any example(github link) for displaying pdf or word document. Thanks & Regards G Rajkumar

April 25, 2019 at 09:34AM by rajkumar.g...@gmail.com
http://bit.ly/2IJrKb0
New post on Flutter Dev Google group:

Security Exception for wi-fi service
Hi, I'm working on the wifi service to get the IP address of my mobile and for further. I have given the following permission in the android manifest also
April 25, 2019 at 10:00AM by karth...@futurefarms.in
http://bit.ly/2Pw2dCU
New post on Flutter Dev Google group:

WiFi Service Error
Hi, I'm working on the wifi service to get the IP address of my mobile and for further. I have given the following permission in the android manifest also
April 25, 2019 at 12:04PM by karth...@futurefarms.in
http://bit.ly/2IGIAqY
New post on Flutter Dev Google group:

Is creating desktop apps already possible?
The current master seems to support building mac desktop apps. I see the message `Downloading darwin-x64 tools...` when running "upgrade" and if I set the environment variable `ENABLE_FLUTTER_DESKTOP`, my Visual Studio Code flutter plugin "detects" a desktop app and offers to build it. Is there

April 25, 2019 at 01:14PM by eib...@gmail.com
http://bit.ly/2XIJzdO
New post on /r/flutterdev subreddit:

What're​ the most useful tools to build the ​Flutter app?
What tools, blocks, packages do you recommend to use for my first Flutter app?

April 25, 2019 at 01:13PM by Gigatronbot
http://bit.ly/2IU9ECp
New post on /r/flutterdev subreddit:

[Noob question] VS code - trying to disable intellisense sugestions if I have not typed anything but opened a bracket
Hey All,
So I'm trying to disable when I open a bracket it suggests objects.When I open new Scaffold's bracket it throws a list at me so when i go to hit enter it fills variables in, I can get around this by hitting escape anytime the list populates but that's kinda annoying​
void main() { runApp( new MaterialApp( title: "Chat App", home: new Scaffold( appBar: new Appbar( ) ) ) ) } 
Using Visual studio code with dart and flutter pluginWhat I've triedRemoving the plugins one by one, it seems to stop suggesting when both plugins are removed (plugin flutter relies on dart being installed) but then I lose code stylesA list of settings found here https://dartcode.org/docs/settings/
and I can't seem to find anything to turn suggestions off completelyWhere I'm currently looking
Visual studio's intellisense to see if I can disable it on dart files,If anyone has any suggestions, please and thank you

April 25, 2019 at 01:46PM by Obvious_Engineering
http://bit.ly/2GFrS92
New post on /r/flutterdev subreddit:

Flutter with AWS, Azure or Google Cloud?
I'm working on an app that uses large database structures. I started off with Firebase, but it doesn't serve my needs anymore. I need a large scalable database, preferably SQL, because I already know that. I need very custom search capabilities that Firestore just doesn't provide.​I don't have any experience yet with any of the 3 services, which one is easy to pick up? What about cost effectiveness? And which has a good integration with Flutter?

April 25, 2019 at 02:26PM by thisw4y
http://bit.ly/2J31urF
New post on /r/flutterdev subreddit:

How I should handle networking in flutter?
In native android development, retrofit is the library to go to when you want to add networking to your app, post requests and such, what is the best way to handle networking in flutter? Do you just follow the Flutter docs and use the http library or are there better options?

April 25, 2019 at 03:43PM by HassanElwy
http://bit.ly/2L1ZXEI