Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on Flutter Dev Google group:

android studio code not working
when i start the android studio app , there is already a code written there, i tried running that code on virtual device (nexus 5) ,its not getting open on the device, its taking a lot of time ,please help

May 03, 2020 at 12:47PM by Shailesh Pandey
https://ift.tt/2Swh2rz
New post on /r/flutterdev subreddit:

InlineTextField - allows to edit text in a place
https://ift.tt/35ouWRW

May 03, 2020 at 01:08PM by echedev
https://ift.tt/3b30NZn
New post on /r/flutterdev subreddit:

Update Flutter App that is run on client
If I've made an Flutter Application, when I need to update this application? I mean if it is run on client, when the packages of flutter are update, the application it will ask to update the flutter packages??

May 03, 2020 at 02:08PM by maliDevFlutter
https://ift.tt/2KTEFWV
New post on /r/flutterdev subreddit:

Can i build live audio streaming with Flutter ?
hello guys :)have you any idea about ho can i build live audio streaming Flutter app so users can stream or listen live audio without without URLthanks ❤️

May 03, 2020 at 01:29PM by hossin839
https://ift.tt/2KRuEJV
New post on /r/flutterdev subreddit:

Advice about Stateful widget with Provider / How Model classes work?
​First topic:So I finally got around Provider and I made it work in my Weather app. Now, my app consists of one main screen which is a stateless widget getting weather info from provider. This all works by getting weather for user's location. I want to implement a search field so users can search for any city, but in order to do that I have to convert my only screen to stateful widget (only for this purpose), is it worth it? Alternative would be making another screen with stateful widget which would display only the textfield, but is that better? I personally think its more practical both functionally and design wise if textfield remains on the same page. I just want someone more experienced to give me advice about it.​Second topic:I made this Model Weather class, basically it consists only of constructor which takes in the weather data I use in my app (temp, humidity, wind speed..). I have this other class where api call happens. There I have a function which gets weather info and stores it in a variable.Example :double get temp => _tempvoid GetWeather() {_temp = apidata['temp'];}I access temp in my main screen using Provider, so in all this logic my Model Weather class is never used and I dont really see how and why use it at all. But ive seen many people on github and everywhere else have models for everything.

May 03, 2020 at 02:43PM by itsdjoki
https://ift.tt/3d9h2FW
New post on /r/flutterdev subreddit:

SQL db options for flutter web app?
Noob questionI want to develop a new flutter app which works with a local sql database. I have later pivoted the idea to build it as a webapp where I have zero experience. Though I'm learning by exploring.I have my basic MVP POC already developed in python that runs on my machine.Here are some of my findings after doing some researchHeard about firebase, but for my application, I prefer SQL database ( as I already have POC developed using SQL)I can make my python scripts to run on some kind of server like flask or django to serve my app over REST apiI have to port all my logic into dart so that my flutter webapp can just run as an app.Coming to the exact questionsHow can I host my web app, if I can make a flask server that communicates with flutter webapp?Is it possible to create just a db file in my webapp and just host it on firebase hosting. My webapp would be served with just reading and writing data from this db, I don't need a backend then?Sorry, if some questions sound just too dumb. I'd also appreciate if someone can point me any resources to learn more about web hosting.

May 03, 2020 at 02:42PM by veneno11
https://ift.tt/2WrUs4O
New post on /r/flutterdev subreddit:

Real arguments for BLoC vs Redux
What is easiest to maintain, test, efficiency etc.

May 03, 2020 at 02:41PM by Corthza
https://ift.tt/2VXS6LT
New post on /r/flutterdev subreddit:

Can't communicate between Go server and flutter client app.
https://ift.tt/2Sw4lNx

May 03, 2020 at 02:34PM by DangerousRing0
https://ift.tt/35rcrMv
New post on Flutter Dev Google group:

modify source code or re-implement a custom one?
Hi, flutter developers, here is a quesion. sometimes, the predefined widgets in flutter cannot match my requirement,like popup menu, meanwhile, only 1 or 2 lines code modification would be enough to me. so in this circumstance, should i modify my local flutter source code directly or just

May 03, 2020 at 03:05PM by carmen che
https://ift.tt/2VY2P91
New post on /r/flutterdev subreddit:

mailto URIs for Flutter and Dart
https://ift.tt/35rzFCa

May 03, 2020 at 04:29PM by serial_dev
https://ift.tt/3c1a85g
New post on Flutter Dev Google group:

Unable to run flutter command . Could not find Dart Dev Snapshot
Please someone help with this issue just tried running a new flutter project.

May 03, 2020 at 05:54PM by rakesh lorentz
https://ift.tt/2zU6mg5
New post on /r/flutterdev subreddit:

FlutterForce — Week 75
https://ift.tt/2z1vr8u

May 03, 2020 at 06:50PM by flutterist
https://ift.tt/2VXN5CN
New post on /r/flutterdev subreddit:

Here is how you can make a send Icon Fly using flutter
Learn here how to create an animation on the buttonMedium Post link :https://medium.com/flutter-community/animated-send-button-in-flutter-94c1834268b1Youtube video link.https://www.youtube.com/watch?v=nxGH3oC-XwQ&t=544s

May 03, 2020 at 09:35PM by hasnen712
https://ift.tt/2Syi1HP
New post on Flutter Dev Google group:

Finished with error: Gradle task assembleDebug failed with exit code 1
When I tried running the code, it displayed these errors. What needs to be done now?

May 03, 2020 at 09:39PM by Poorvi Mittal
https://ift.tt/3daFXsD
New post on /r/flutterdev subreddit:

How do I make use of Model class
I am making a weather app in flutter. I use Provider for state management and the basic functionality is there. I get weather info from class in which I make api request and then with provider I pass it to my main screen. The thing is Ive seen everywhere people use Models, I know what it is, I know how to make it. But I dont know how to use it. My Provider is linked to the ApiCall class. So where would I make the instance of this model. Anyway if someone could explain it to me, I looked for explanation on youtube, on github, on others people projects. I just cant see how to implement it myself.

May 03, 2020 at 10:44PM by itsdjoki
https://ift.tt/2z8PX7e
New post on /r/flutterdev subreddit:

Multi-Tenancy with Flutter
Has anyone had success creating a Multi-Tenant mobile app using flutter? And if so, what did you use to setup your backend?I am currently working on a Multi-Tenant app and would love to hear from people who have experience with this structure.

May 03, 2020 at 11:45PM by smauryholmes
https://ift.tt/2ylLXzW
New post on Flutter Dev Google group:

Android Studio seems to be holding obsolete version of software that bears no relation to source!!!!
How do you clean out the bin directory as its getting ridiculous now!!! Even cleaned out the old version on sony experia, does not clean out the widget tree!!!! Suspect theres some caching or something gone badly wrong!!! Never mind hot reload its obsolete load that wont refresh flush !!!! Come

May 04, 2020 at 01:32AM by steve giergiel
https://ift.tt/2WiOXVQ
New post on /r/flutterdev subreddit:

Looking for Candle chart (OHLCV) with technical indicator for flutter
Hi, is there any candle charting library with technical indicator for flutter. I need it for a crypto app.I know about https://pub.dev/packages/flutter_candlesticks but it doesn't have scrolling, zoom, and technical indicators.is there a paid or open-source option?Thanks

May 04, 2020 at 03:02AM by Tradeplanio
https://ift.tt/2yfyjyB