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

Flutter and dependencies
Hi, I was wondering if Flutter shares the same or similar issues with dependencies that React Native does.I've been using RN for about 2 years now, and I am getting frustrated by both minor and major updates to dependencies breaking something down the chain.It seems like I spend so much time researching problems in github that I'm just not having fun anymore.I was wondering if Flutter developers run into the same issues.Thanks!

November 29, 2018 at 05:10PM by TopNFalvors
https://ift.tt/2KHK9mL
New post on Flutter Dev Google group:

Guide for proper Theme usage and customization in Flutter?
Hello all, Are there any guides on proper Theme usage and customization in Flutter? Specifically, there are two objectives I am trying to obtain. - Extend the material light thee with a few tweaks and apply it application-wide. - Create a dark version of this theme and use it on a subtree of my

November 29, 2018 at 06:44PM by Jonathan Koren
https://ift.tt/2BGzypq
New post on Flutter Dev Google group:

ios app get stuck at splash screen
I have created archive for ios and deployed onto device ......but when app launches it get stuck at splash screen can any one help me to sort out this issue?

November 29, 2018 at 06:48PM by Ganesh Shinde
https://ift.tt/2KHBvVn
New post on Flutter Dev Google group:

New tooling releases - polish and stability
Hello everyone! Here are the details for new tooling releases! The focus for this release is on polish and stability. There are quite a few changes to the UI - largely based on ongoing UX research - so this announcement is heavy on screen shots! Performance Tooling Changes The Performance

November 29, 2018 at 07:21PM by Nilay Yener
https://ift.tt/2Q05yxk
New post on /r/flutterdev subreddit:

How to manage multiple customers using single flutter application?
In iOS we can use Xcode targets to manage/share multiple applications in single workspace this is useful way to handle for multiple customers. Can we do this in flutter? Is there any alternative way to share code between flutter apps?https://www.appcoda.com/using-xcode-targets/

November 29, 2018 at 07:55PM by vaibhav_2018
https://ift.tt/2rb75BQ
New tweet from flutterio:

The latest performance tooling release features a brand new look. Familiarize yourself with the new UI changes impacting the Inspector Tools, Searchable Settings, Icons, and even featuring the new Extract Widget.

Learn more here → https://t.co/JYZNLZ2ZF7 pic.twitter.com/WWHfiWjXaH— Flutter (@flutterio) November 29, 2018

November 29, 2018 at 08:05PM
http://twitter.com/flutterio/status/1068219397293125633
New post on /r/flutterdev subreddit:

Architecture help - can I build chat application just with flutter and fire base?
If yes, can you please give me references or if not possible, can you help giving me some guidelines one extra things I need to add on top of flutter and fire base please

November 29, 2018 at 10:39PM by vivekstime
https://ift.tt/2SkVYlw
New tweet from flutterio:

Got a question only a Flutter expert can answer?

Tweet us your questions using #AskFlutter, and @RedBrogdon and the team will answer them on the #FlutterLive livestream!

Sign up for updates here → https://t.co/WqaEzipG1m pic.twitter.com/rief9ZWiO0— Flutter (@flutterio) November 27, 2018

November 29, 2018 at 11:16PM
http://twitter.com/flutterio/status/1068267368688709632
New tweet from flutterio:

#FlutterLive is only five days away! Stay tuned to @Flutterio for a sneak peak at a secret project we're revealing at the event. Here's the first piece to kick things off. Answer Flutter trivia to see the next piece!

First up: what was Flutter's original name? pic.twitter.com/sZXPKssDPS— Flutter (@flutterio) November 29, 2018

November 30, 2018 at 12:11AM
http://twitter.com/flutterio/status/1068281288589602816
New post on /r/flutterdev subreddit:

Dart for VS Code v2.21.0 released
https://ift.tt/2RoKyge

November 30, 2018 at 04:03AM by Purple_Pizzazz
https://ift.tt/2Q8oeeA
New post on Flutter Dev Google group:

probleme in trying to position a a button over a stack
i am tryong to positiona button over a stack but when i put the button exactly 50% over my container a part of the button become uncliquable here is my code i hope you can help m fix it Stack( fit: StackFit.passthrough, alignment: FractionalOffset.center, overflow: Overflow.visible,

November 30, 2018 at 11:21AM by kadri.moh...@gmail.com
https://ift.tt/2FO5PPh
New post on /r/flutterdev subreddit:

Flutter Awesome
https://ift.tt/2IbmYjl

November 30, 2018 at 12:58PM by heshanfu
https://ift.tt/2SgqaxY
New post on Flutter Dev Google group:

How to fix RangeError (index) error.
The error message is Another exception was thrown: RangeError (index): Invalid value: Valid value range is empty: 0

November 30, 2018 at 01:42PM by Ajnas Askar
https://ift.tt/2ABoF6d
New post on /r/flutterdev subreddit:

Feather: Publish Your Flutter App on macOS
https://ift.tt/2Q0KqHj

November 30, 2018 at 03:29PM by mark_feather
https://ift.tt/2Rq1sLN
New post on /r/flutterdev subreddit:

Is there a better way to handle complex route navigation in Flutter?
Currently making an app that has lots of screens. Screen 1 has five buttons, each one takes to a different screen, and on Screen2, there are over 10 buttons, each one takes to a different screen.Here's a snippet of code to clarify:
class OneCard extends StatefulWidget{ final String title; final String currScreenTitle; final String comment; final String buttonText; final IconData iconData; OneCard({Key key,this.title,this.comment,this.buttonText,this.iconData,this.currScreenTitle}):super(key:key); @override State<StatefulWidget> createState() => OneCardState(); } class OneCardState extends State<OneCard>{ void cardOnPressed(){ setState(() { Navigator.push(context, MaterialPageRoute(builder: (context)=>thirdScreenElements[widget.currScreenTitle+widget.buttonText])); }); } @override Widget build(BuildContext context) { return Padding( padding: const EdgeInsets.only(top:2.0,left: 8.0,right: 8.0), child: Card( child: Column( mainAxisSize: MainAxisSize.min, children: <Widget>[ new ListTile( leading: Icon(widget.iconData), title: new Text(widget.title), subtitle: new Text(widget.comment), ), ButtonTheme.bar( // make buttons use the appropriate styles for cards child: ButtonBar( children: <Widget>[ FlatButton( child: new Text(widget.buttonText), onPressed: () => cardOnPressed(), ), ], ), ), ], ), ), ); } } 
I used the CurrScreenTitle and the ButtonText as parameters since they're unique. I created a map that contains all the screens in 'ThirdScreen', so that flutter navigates to the corresponding screens. This gets complicated very quickly, I'm sure there's a better way.

November 30, 2018 at 04:41PM by Yahiabouda
https://ift.tt/2rfT6uF