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

Flutter YT Channel
https://youtu.be/qBhNpE7PxFg

February 25, 2019 at 11:20AM by professionaltut143
https://ift.tt/2NszSw7
New post on /r/flutterdev subreddit:

Infinite Scrolling, HTTP json with an refresh indicator
Hey,I'm quite new to Flutter and i'm working on an app. I was trying to find an tutorial on how to get a list with HTTP json contents thats shows like the first 10 of it and when you keep scrolling down it will start to show you more. Also i would love to have an refresh indicator on it.Anyone has a good tutorial or github repo for this?Thanks in advance, Greetings

February 25, 2019 at 11:13AM by ShaggyMeMe
https://ift.tt/2GIf975
New post on /r/flutterdev subreddit:

Help to add auto-update support for dart/flutter packages in renovate
I've started this PR in renovatebot to add auto-upgrade support for dart/flutter packages: https://github.com/renovatebot/renovate/pull/3260There are some questions from the renovate team that I'm not knowledgeable enough to answer.It would be great if you could help answering those questions.

February 25, 2019 at 12:19PM by herkulano
https://ift.tt/2NqBfvc
New post on Flutter Dev Google group:

A Comparison of Flutter Vs ionic vs React native?
Hello Everyone, I am a blogger, SEO & Social media expert and also the technology consultant to guide startups about the which technology you have to choose. therefore I am going to write one blog about the *big comparison of Flutter Vs ionic vs React

February 25, 2019 at 12:45PM by s...@excellentwebworld.com
https://ift.tt/2tDX8y6
New post on Flutter Dev Google group:

Bloc Authentification + Routing
Hi, I found this tutorial about bloc and authorization ( https://ift.tt/2XjMJW5) and it's working very good. But now I want to integrate multiple routes. The routing works but when I change the initial route, the logout won't

February 25, 2019 at 02:22PM by nickysc...@gmail.com
https://ift.tt/2SsK2O0
New post on /r/flutterdev subreddit:

Getting started with Flutter
http://dev.edupioneer.net/15a8c5153b

February 25, 2019 at 02:59PM by RosemaryRol
https://ift.tt/2TgoWaf
New post on Flutter Dev Google group:

I need to talk about fake app
An app with the same id and the name of my app that is in the official store (Google paly) was installed on a client without its authorization (virus), this app tries to steal client information, what to do?

February 25, 2019 at 03:40PM by Tiagosito
https://ift.tt/2Xgyktw
New post on Flutter Dev Google group:

flutter run ios with vscode in windows 10
Hi I searched for run ios by flutter and I found there is flutter inspector for switch between android and ios. Is it possible to run ios with vscode in windows 10?

February 25, 2019 at 04:10PM by Mohammad Komaei
https://ift.tt/2EcgOOw
New tweet from flutterio:

🇪🇸We're in Barcelona, Spain for #MobileWorldCongress! 🇪🇸

Hope to see you there, and if you can't make it, stay tuned to @flutterio for all the exciting #MWC19 announcements.

More info here → https://t.co/ZP387L9ncP pic.twitter.com/Q7nYFYSVvO— Flutter (@flutterio) February 25, 2019

February 25, 2019 at 04:00PM
http://twitter.com/flutterio/status/1100047768725454849
New post on /r/flutterdev subreddit:

Firestore back-end and firebase, some help please
Hey guys,​I have a good finished prototype working on both iOS and android.Right now I have been monitoring my backend usage.​For firestore issue:​I have 2 views, in each view(page) I have a streambuilder with a stream with a "where" clause to match parameters.Each view displays 2 documents. I navigate 20 times in between these views. I incur 80 reads. 20x4 = 80 reads(I monitor it on cloud firestore consle usage tab and detailed usage page...pretty accurate!)​So it seems it keeps downloading the content from firestore backend incurring reads.​Offline capabilities are working, as I put the phone in airplane mode and it does show from the cache. I thought it was supposed to show from cache as well when no changes have been made on the firestore(while connected to internet)?​Maybe a case of streambuilder subscribing to the stream as a new subscription? I have google somethings, people say navigating/push/pop/keyboard on screen etc..any change to UI even flipping your phone to change horizontal/vertical views will cause a rebuild. Where this might cause the streambuilder to subscribe to the stream again.​Whats the best way to maintain state of a streambuilder?​I am using streambuilder as per googles doc. I also watched their YouTube video of implementing BLOC for streams, which I have done so as well through an inherited widget and passing down the streams.​Also to write to my firebase backend(A message of 250 bytes), I incur about 22.1 KB of download according to realtime database usage tab. Do you have to be super rich to use these backend technologies? I am using a physical phone release build.​I have migrated to androidX successfully(FINALLY AFTER 20 DAYS OF struggle) and have the latest plugins while still maintaining my problem.​Is there a good tutorial on how to deal with this?​Thank you for reading, i know its a lot and I hope I can find some help.

February 25, 2019 at 05:05PM by Bk_ADV
https://ift.tt/2EeDNsl
New post on /r/flutterdev subreddit:

A gitlab client made by flutter. F4Lab 🤓
https://ift.tt/2TemKjC

February 25, 2019 at 05:36PM by stefanJI
https://ift.tt/2ILF1R0
New post on /r/flutterdev subreddit:

Piano Built with Flutter
https://ift.tt/2ExSUyp

February 25, 2019 at 06:50PM by SoundDr
https://ift.tt/2VkkZ1o
New tweet from flutterio:

#MWC19 is here! If you’re attending, stop by Hall 8.0 - NEXTech Theatre F on Feb 26 @ 3:00PM (GMT+1). @yates will be speaking alongside @MartinAguinis from @flutterio about the future of mobile app development.— Square Developer (@SquareDev) February 25, 2019

February 25, 2019 at 07:26PM
http://twitter.com/flutterio/status/1100099652198621190
New post on /r/flutterdev subreddit:

Tips on building a widget similar to the daylight view in the google weather app?
Hello,​I am developing an app in Flutter and i'm having a lot of fun with it! Everyday i'm learning something new.However i'm really struggling with building a view that displays the position of the sun in the sky similar to the widget in the Google weather app. I decided to go with something different and more simple, so something like this.​I tried building something using a Custom Painter and i kinda managed to draw an arc, but i'm finding a hard time figuring out how to use the paint methods correctly, paiting the "sun" over the arc, and using different colors to differentiate between night and day.​Do you guys can give me some advice about where i can start to do this or if there is some kind of tutorial or guide to draw curves the right way?​Thank you :D

February 25, 2019 at 09:29PM by AleSpero
https://ift.tt/2tC997d
New post on Flutter Dev Google group:

How to change the name in the button (Cancel and continue) on stepper
I would like to know if you can change the name of the buttons on the stepper

February 26, 2019 at 12:38AM by Israel Moreno
https://ift.tt/2UapCes
New post on /r/flutterdev subreddit:

Flutter (Channel beta), v1.2.1 is released!
"flutter upgrade" to upgrade to latest beta release!Documents: https://flutter.dev/docsChangelog: https://github.com/flutter/flutter/wiki/Changelog

February 26, 2019 at 05:54AM by smoothdvd
https://ift.tt/2GJTQ54