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

3 reasons why we chose Flutter and why you should too
We just wrote an article about why companies should choose flutter. If you like it, can you give a clap, please.​https://medium.com/@codebase.studio/3-reasons-why-we-chose-flutter-and-why-you-should-too-39aca71796f4

June 25, 2019 at 04:22PM by glancer000
http://bit.ly/2X4dd1i
New post on /r/flutterdev subreddit:

In using Providers, is there a need to setup getters?
I've have two scenarios where a provider has its getters setup and one who has not.
class ProviderWithoutGetters extends ChangeNotifier { int counter; setCounter(int i) { counter = i; notifyListeners(); } 
and
class ProviderWithGetters extends ChangeNotifier { int _counter; int get counter => _counter; setCounter(int i) { _counter = i; notifyListeners(); } 
so when using this in an app, everything behaves exactly the same, ie
Consumer<ProviderWithoutGetters>( builder: (context, provider, child) => Text('${provider.counter}') ) 
and
Consumer<ProviderWithGetters>( builder: (context, provider, child) => Text('${provider.counter}') ) 
They behave the same.My question is, what's the reasoning behind the getters and is there a difference between the two approaches in terms of performance, compatibility etc?Thanks!

June 25, 2019 at 03:23PM by mr_poopybumhole
http://bit.ly/2Y8xpLM
New tweet from FlutterDev:

With Futures, @Dart_Lang’s most basic API for asynchronous coding, you can:

React to async data
Catch errors
Build Flutter widgets with FutureBuilder

Learn more in this episode of #FlutterinFocus &rarr; https://t.co/ZEt8aQslP3 pic.twitter.com/lA84s63cs9— Flutter (@FlutterDev) June 25, 2019

June 25, 2019 at 07:10PM
http://twitter.com/FlutterDev/status/1143567070094876677
New post on /r/flutterdev subreddit:

How do you implement Flutter Sticky Widget.
If you are reading this post from reddit mobile version, you will notice that when you scroll up in a post the footer of the post gets stuck below the appBar. There is only one library that implements something similar right now, but I will like to understand the logic behind it, and how it was made. Does anybody have any idea

June 25, 2019 at 11:00PM by iamokpe
http://bit.ly/2YcLubb
New post on /r/flutterdev subreddit:

Thinking of coding a Flutter app rosspost
https://ift.tt/2RAQfZA

June 26, 2019 at 03:02AM by Stevenicloud
https://ift.tt/2xnxhMV
New post on Flutter Dev Google group:

Use Tesseract.js in Flutter
How could I use Tesseract.js in Flutter? Does anyone have an idea?

June 26, 2019 at 07:25AM by 北科大-陳珈鋐
https://ift.tt/2XzWW3q
New post on Flutter Dev Google group:

how to get the TextFiled value outside the widget
below is my class about the TextFiled class InputContainer extends StatefulWidget{ final _InputContainerInner input = new _InputContainerInner(); @override State createState() { return input; } } class _InputContainerInner extends State{ TextEditingCo

June 26, 2019 at 08:47AM by yusong hu
https://ift.tt/2Lh8DFK
New post on /r/flutterdev subreddit:

Flutter Calendar Libraries Comparison
https://ift.tt/2X01g7W

June 26, 2019 at 12:04PM by Elixane
https://ift.tt/2XwCbG2
New post on /r/flutterdev subreddit:

I want to make an app that makes use of cloud firestore for the backend. Any ideas as to what I should make?
I'm sorta new to flutter, so maybe you have some ideas that are suited to my level?Also, the main objective here is for me to learn to use firestore in any app.

June 26, 2019 at 10:56AM by BlekSmungus
https://ift.tt/2FL7qDd
New post on /r/flutterdev subreddit:

Does any of you have some experience with fastlane&Codemagic? Worth a try?
https://ift.tt/2IQCYcN

June 26, 2019 at 02:26PM by katrindev
https://ift.tt/2Lm68BW
New post on /r/flutterdev subreddit:

firedart - a dart-native implementation of the Firebase SDK
https://ift.tt/2YbTzwR

June 26, 2019 at 02:47PM by DrCachapa
https://ift.tt/2FANL8J
New post on /r/flutterdev subreddit:

What the difference Google's Provider and Bloc?
What's the difference between Google's Provider and Bloc?What are the pros and cons? What do I miss I if use provider?I thought that provider (3.0.0) was like ScopedModel and Bloc together.

June 26, 2019 at 02:38PM by D_apps
https://ift.tt/2ZMy6Lc
New post on Flutter Dev Google group:

Flutter multi-Language app with multiple page. (Internation­alizing Flutter apps)
Hello to all! I am creating a multi-language application. However, I do not find a tutorial on the web that would explain how to do it. I found tutorials to make a multi-language application for one page, but for many, I did not find. Do you have any suggestions? I want to detect the device

June 26, 2019 at 03:02PM by Pascal Fournier
https://ift.tt/2X9JqnD