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

When are we getting a proper multiThreading in flutter, plugins in isolate, etc ??
I have lost countless days in trying to micro-optimize my loading and UI/UX timeline in order to get to a good performance state, while all of it can be easily addressed if we had a proper multiThreading support for flutter. When is it coming? is it coming at all ?

May 03, 2020 at 12:10AM by RARBK
https://ift.tt/2VY18Zc
New post on /r/flutterdev subreddit:

Easiest way to responsive IU on portrait only mobile?
Anybody have resources or tips on simple ways to to create a responsive flutter app that will only be on mobile and only portrait mode?I see a bunch of great guides that go real in depth and cover mobile , tablet, and web + landscape. But, I'm looking for something easy that will cover just portrait mobile (and maybe tablet depending on how much more work that requires).

May 02, 2020 at 11:54PM by ucvb_ucvb
https://ift.tt/2SwiXfP
New post on /r/flutterdev subreddit:

Flutter web integration with Firebase
How complicated is it to integrate Firebase with Flutter Web?Is it stable enough (I'm not talking about delivering it to a client, i just want to know if I'll be able to use the website without MANY limitations)What are some good tutorials to create a website using flutter and integrate Firebase?
OK, now I'll explain better: what I'd need is a basic terminal for managing some data coming from Firebase Firestore. It should be very basic, however I know nothing about HTML, CSS or JavaScript, and since I have a deadline I think it could be a good idea to use Flutter Web.
Thanks

May 03, 2020 at 01:45AM by _hadhodrim
https://ift.tt/3faK75z
New post on Flutter Dev Google group:

apoyarse de referencia de samples de flutter
Buenas noches https://ift.tt/2G7at9Y en este repositorio de sample de flutter, me sirve como referencia para construir apps en con el ide de antroid studio, cierto??? Pero todo con lenguaje .dart, cierto?????

May 03, 2020 at 01:42AM by Pol Cristobal Paredes
https://ift.tt/3aWFMjf
New post on /r/flutterdev subreddit:

Unable to push route from the notification when the app is terminated
I have an app that uses firebase messaging and all is well, but when the app is terminated, i still get the notifications, but when I click on it, the app starts from splash screen and then to home instead of the defined push route that I need. Unable to understand how to ignore standard app routing when started from the notification. did anyone face this before? App resume works fine.

May 03, 2020 at 05:56AM by essuraj
https://ift.tt/3db4ZIi
New post on /r/flutterdev subreddit:

Flutter Music Sample (Android/iOS)
/r/Flutter/comments/gcf48v/flutter_music_sample_androidios/

May 03, 2020 at 08:15AM by rohansohonee
https://ift.tt/3fcHMHt
New post on Flutter Dev Google group:

How can i get rid of using HAXM on my AMD processor Laptop?
Hi. I just downloaded the Android Studio App, and since i have a AMD processor, its telling me to install HAXM. So i do that and this message keeps popping up. I have no clue what to do. I've uninstalled and reinstalled it but nothing worked. Ive tried all the online videos that get rid of this

May 03, 2020 at 08:39AM by Sauban Kidwai
https://ift.tt/2YtocRp
New post on /r/flutterdev subreddit:

Responsive and adaptive UI in Flutter for Web/PWA
https://ift.tt/35pDfNi

May 03, 2020 at 08:26AM by Elixane
https://ift.tt/2KTcFCL
New post on /r/flutterdev subreddit:

The main concepts of GestureDetector widget in examples
https://ift.tt/2z5OMVM

May 03, 2020 at 08:23AM by Elixane
https://ift.tt/2Spyiij
New post on Flutter Dev Google group:

How to get 3 different texts in same line
Hi, I have 3 different texts now I want to print all 3 texts in the same line horizontally. May I know how to do that. Awaiting your reply. Thanks & Regards,

May 03, 2020 at 10:26AM by Sac123
https://ift.tt/3b2OIDv
New post on /r/flutterdev subreddit:

scrollable_positioned_list | List that allows scrolling to a specific item in the list.
https://ift.tt/2Wkc1nb

May 03, 2020 at 12:08PM by Purple_Pizzazz
https://ift.tt/2KWaaQc
New post on Flutter Dev Google group:

info
Hi, my code is working properly but showing one info and i trying to solve, please help me to find a solution? check attached image.

May 03, 2020 at 12:47PM by Gulam Fahad Ahmed
https://ift.tt/2ynICjR
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