Flutter Heroes
25.5K subscribers
272 photos
2 videos
31.1K links
Download Telegram
GGroup: Breaking Change: --preview-dart-2 turned on by default
What is changing? tldr: As part of Dart 2 release, we will be enabling --preview-dart-2 by default. This will cause some breakages due to stricter Dart type enforcement. The change is expected in master in the next few days, and will likely be propagated to our next beta channel build.

Submitted March 13, 2018 at 06:20AM by Leaf Petersen
via Flutter Dev http://ift.tt/2tHqOx3
GGroup: How to make dart Widgets fully transparent to see platform native view under FlutterView?
I want to create a video chat app, using some platform native SDK like WebRTC to implement the video part, using flutter to implement other interactivity, how could I achieve that? In Android, I try to hook the createFlutterView method, create a FrameLayout to hold the FlutterView and other

Submitted March 13, 2018 at 07:05AM by Piasy Xu
via Flutter Dev http://ift.tt/2tDZcZI
Reddit: Good flutter app structure
Any good flutterio app structures that scales well over time? Used the mantra way on reactjs and tend to do so here, too.https://medium.com/wertarbyte/structure-your-react-apps-the-mantra-way-3a831ffd1580

Submitted March 13, 2018 at 10:01AM by Saschb2b
via reddit http://ift.tt/2p6jTbV
GGroup: Is there any architecture pattern?
Hi guys I would like to know about any coding pattern to follow ? Like we have in native android - MVP, MVVM? Consider app like all CRUD operations from server ? Thanks. also join this if anyone interested Check my latest video on flutter : https://www.youtube.com/watch?v=x_E4otuegDU

Submitted March 13, 2018 at 12:18PM by Gajjar
via Flutter Dev http://ift.tt/2p4pIXB
Reddit: Dynamically add/remove tabs
I decided to play around with flutter and looks like i am stuck with pretty basic thing. I have a widget which shows tabs and i have a button 'Create new tab' which suppose to add new tab. So i made a stateless widget and just pass items down. But for a some reason TabController uses only initial value.I checked sources and find out that DefaultTabController is StatefulWidget so it creates state only once and never changes it. So looks like it does not matter how many time you do new YourStatefullWidget you will get only one instance of state.
class MyTabsPage extends StatelessWidget { List<Icon> items; MyTabsPage({ this.items }); @override Widget build(BuildContext context) { return new DefaultTabController( length: items.length, child: new _TabsWidget(items: items) ); } } class _TabsWidget extends StatelessWidget { List<Icon> items; _TabsWidget({ this.items }); @override Widget build(BuildContext context) { TabController controller = DefaultTabController.of(context); print('Items count: ' + controller.length.toString()); // Shows only initial amount of tabs return new TabPageSelector(controller: controller); // Renders only initial amout of tabs } } 


Submitted March 13, 2018 at 12:10PM by _KillaBee_
via reddit http://ift.tt/2tJmjC7
Reddit: Contact Picker
I am using contact_picker for to get the contacts, but while click back option in app, app was closed, so how to set the back operation in contact_picker app?

Submitted March 13, 2018 at 01:18PM by EphronKarthick
via reddit http://ift.tt/2Fxz6wZ
GGroup: Handling of Open Issues and Pull Request in Flutter
Hi Team, I could see lot of issues are still open without any labels. I am not asking about the solution to the issues.. but the proper labelling and comments from the team will help for filtering and searching. I am not sure if Team looks on these issues on a daily basis. Only few issues gets

Submitted March 13, 2018 at 05:23PM by Purusothaman Ramanujam
via Flutter Dev http://ift.tt/2FGgTJN
GGroup: What is the equivalent to ColorFilter for Image Carousels?
I have implemented ColorFilter on static background images to create a dark mask. However, I can't seem to apply this same technique to background image carousels. I can use the Opacity Widget as an alternative, but this requires me to change the background color to black (so it's not a mask,

Submitted March 13, 2018 at 06:14PM by ez...@sightworks.com
via Flutter Dev http://ift.tt/2HsFhik
Reddit: Article about how Flutter's hot reload scales to really big apps
http://ift.tt/2DoyjJ4

Submitted March 13, 2018 at 06:21PM by wmleler
via reddit http://ift.tt/2IkBLbc
GGroup: Performance of MediaQuery.of(context).size
How fast is invoking MediaQuery.of(context).size ? Is it a fast lookup call to a variable in memory in Dart realm or is it a slow lookup to native api using platform channel ?

Submitted March 13, 2018 at 07:35PM by Sreenath N
via Flutter Dev http://ift.tt/2HuUpvK
Reddit: Sample Apps using Multi Service Firebase Auth
Can you please point me to an example or tutorial which deals with multi-services login(email, facebook, google) using Firebase Auth? I am trying to learn how to deal with authentication and show screens based on that.

Submitted March 13, 2018 at 07:41PM by PurusR
via reddit http://ift.tt/2FFiks2
GGroup: Couchbase Flutter
Hi, is their any package for CouchBase that we can use in Flutter? Best regards

Submitted March 14, 2018 at 11:10AM by Rhino Kharagne
via Flutter Dev http://ift.tt/2Do2mR3
Reddit: CryptoShadow - CryptoCurrency Tracker (@flutterio)
http://ift.tt/2IqiSUr

Submitted March 14, 2018 at 01:08PM by huextrat
via reddit http://ift.tt/2pbaOih