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

Has anyone run flutter on raspberry pi (3, 3+, or 4)?
Im curious how much progress has been made running flutter on raspberry pi. I found some promising results here:https://www.youtube.com/watch?v=3hmxaH_z7mYhttps://github.com/jwinarske/flutter_embeddedhttps://medium.com/flutter/flutter-on-raspberry-pi-mostly-from-scratch-2824c5e7dcb1But I have yet to have found someone running flutter web on it.If anyone out there has a raspberry pi 3 or 4 , can you report how performance is for the flutter web demo samples here:https://flutter.github.io/samples/

August 18, 2019 at 02:14AM by yabadababoo
https://ift.tt/30f41o2
New post on /r/flutterdev subreddit:

Dart PSA: PMD's copypaste detection tool (CPD) has support for Dart. You can let it find duplicated code which is often ripe to be extracted to a method or a mixin or a class.
https://twitter.com/filiphracek/status/1162913060740161537

August 18, 2019 at 06:57AM by EngineerScientist
https://ift.tt/2TLRdTR
New post on /r/flutterdev subreddit:

Bumping pubspec version
I have added support for build number to my pubspec version manipulation tool. Would appreciate you giving it a try and providing feedback. Thanks.

August 18, 2019 at 09:50AM by f3ath
https://ift.tt/2Heij0P
New post on /r/flutterdev subreddit:

FlutterForce — Week 40
https://ift.tt/2N9jDGd

August 18, 2019 at 10:25AM by flutterist
https://ift.tt/2YYdFPj
New post on /r/flutterdev subreddit:

How to create a Dynamic Grid with various sized Boxes in Flutter (see screenshot)
I am pretty new to flutter and would like to experiment with various sized Boxes, similar to the Google Keep UI. I added a screenshot to clarify what I mean. Are there any packages that can handle that or do I need to implement a custom solution?​https://imgur.com/a/5Rc3I5K

August 18, 2019 at 12:26PM by daehruoydeef
https://ift.tt/2P1fYNj
New post on /r/flutterdev subreddit:

Hive vs SQLite vs SharedPreferences benchmark
https://ift.tt/2TGrSdU

August 18, 2019 at 04:56PM by leisim
https://ift.tt/2ZjS4R6
New post on Flutter Dev Google group:

Overflow Issue
I was using a textfield when I encountered this problem. I have placed a flat button below my text field. Now, what has happened is that when I tap on the text field to write anything, my mobile keyboard appears. Everything seems normal until here. Now after I enter any data in my text field and

August 18, 2019 at 07:34PM by Biplab Dutta
https://ift.tt/2TIp1RC
New post on Flutter Dev Google group:

Overflow Issue
[image: Screenshot (12).png] [image: Screenshot (13).png] I was using a textfield when I encountered this problem. I have placed a flat button below my text field. Now, what has happened is that when I tap on the text field to write anything, my mobile keyboard appears. Everything seems normal

August 18, 2019 at 08:01PM by Biplab Dutta
https://ift.tt/2KGLko3
New post on /r/flutterdev subreddit:

GetIt V2.0.0 is here
Hi,today I pushed V2.0.0 of the popular Servicelocator GetIt. This version is a breaking change: you no longer can directly create instances of the type GetIt because GetIt is now a singleton please see the ReadMe.The only change you have to make is instead of
GetIt MyLocator = GetIt(); now GetIt MyLocator = GetIt.instance; 
If you really need more than one GetIt instance there is a secret way :-) (see readme)Another new feature for fringe cases: You now also can register factories/singletons by an identifier instead of a type.Check it out and give me feedback.Cheers Thomas

August 18, 2019 at 08:57PM by escamoteur
https://ift.tt/2KEAWNu
New post on /r/flutterdev subreddit:

Flutter CLI: 52 hidden samples
https://ift.tt/2HcV3QY

August 19, 2019 at 06:16AM by nitishk72
https://ift.tt/2Nh7n6u
New post on Flutter Dev Google group:

Flutter Chewie Controller Auto Loop with Auto Mute
I am using the chewie video controller and it auto loops and plays but I want to them to be Muted until the user toggles a custom button to play the sound. Anyone know about it? Brennan

August 19, 2019 at 07:29AM by Brennan Altringer
https://ift.tt/2KRkFDX
New post on Flutter Dev Google group:

Post request
Hi am trying to post data from app to web app but failed to construct logic for how to do that Plz help

August 19, 2019 at 08:34AM by IBNALTECH
https://ift.tt/2ZbsSMf
New post on /r/flutterdev subreddit:

An example of web interactive guide to Flutter animations
https://ift.tt/2Mq9vZU

August 19, 2019 at 11:08AM by rxlabz
https://ift.tt/2KWsWXn
New post on /r/flutterdev subreddit:

Flutter Widget Livebook : A website built using Flutter for web to live preview Widget samples online.
https://ift.tt/2KPktVK

August 19, 2019 at 10:51AM by EngineerScientist
https://ift.tt/2MoosvK
New post on /r/flutterdev subreddit:

silly silly question about setState-ish
hi, i started developing/studing flutter (i'm a senior android/ios developer) and i've got this silly question that's rumbling in my mind.considering the "hello world!" app (the counter increasing one) you get when creating a new flutter project, there's the update of the state, like this:
void _incrementCounter() { setState(() { _counter++; }); } 
nothing complicated, BUTit also works like this
void _incrementCounter() { _counter++; setState(() { }); } 
with counter outside the function passed inside setState.So what is function parameter inside setState for ? please don't kill me if question is too silly

August 19, 2019 at 12:12PM by moffetta78
https://ift.tt/30fUehv