Flutter Heroes
25.8K subscribers
272 photos
2 videos
31.1K links
Download Telegram
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
New post on /r/flutterdev subreddit:

Flutter plugin for Android Nearby Connections API
Made this flutter plugin recentlyPub: https://pub.dev/packages/nearby_connectionsGithub: https://github.com/mannprerak2/nearby_connectionsSome applications: Offline Multiplayer gaming, File sharing, etcIt android only, Supports bytes and files transfer, with all 3 types of strategies. I've tried to keep its interface as similar to the Original library. The workflow is also similar.Please share your thoughts/ any feedback whatsoever. Thanks

August 19, 2019 at 11:55AM by mannprerak
https://ift.tt/2P47qFo
New post on /r/flutterdev subreddit:

How would you go about implementing this navigation interface?
Hi there!I'm working on a new app with a non-standard navigation interface and I could really use some suggestion and feedback about how to implement it.The navigation is really similar to the one used in the app Zenly example here -> https://photos.google.com/photo/AF1QipPNj1hSjO3t4EDEiNsdDNksiEKLOQ1tzF8pB8ZI?hl=frThe navigation has the following characteristics:Composed of a middle screen which is a scrollable map (google maps) and two side screensThe two side screens can appear ON TOP as an overlay of the middle screen from the left or right side (like full-screen drawers)3 Buttons are positioned at the bottom of the screen at all time (on top of all screen) to allow navigation between pages and react to the animation stateA touch on one of the side screen can trigger a fade into the middle screen directlyMy first thought was to create a stack with the middle screen in the background and a 3 pages `PageView` with the middle one set to be transparent but it prevented touches and gestures on the underlying map.After that, I thought about using the `Drawer` property of the `Scaffold` widget to put my two sides screen as full-screen drawers. It worked, but didn't allow for any customization (can't access the animations controllers used by the drawers for example)How would you go about and implement this navigation? :)

August 19, 2019 at 01:26PM by theo_champion
https://ift.tt/2KTvANn