Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New tweet from flutterio:

There are over 130 viewing parties around the world. Find one near you to celebrate Flutter Live with other developers! Stay tuned for updates in the coming days.

Find your party here → https://t.co/4WUDTKdRc8 pic.twitter.com/6lABLKWesJ— Flutter (@flutterio) November 30, 2018

November 30, 2018 at 06:04PM
http://twitter.com/flutterio/status/1068551446029832192
New post on Flutter Dev Google group:

Page-curl animation in Flutter
Hello! Is there a way to to create a page-curl transition for animating navigation between pages of content? Something like UIPageViewController in iOS with transition style pageCurl, presenting two pages at once on larger screens (like iPad/tablets), and one page on smaller screens (iPhone

November 30, 2018 at 07:49PM by Mikhail T
https://ift.tt/2BICIbX
New tweet from flutterio:

Correct: our first name was 'Sky'! See the second piece below. #FlutterLive will bring together devs from all over the world: which country currently has the most Flutter devs? Answer to reveal the next piece of the puzzle! pic.twitter.com/CUrtyc8bj9— Flutter (@flutterio) November 30, 2018

November 30, 2018 at 08:33PM
http://twitter.com/flutterio/status/1068588921431384064
New post on /r/flutterdev subreddit:

Exploring Google Maps (Official Support) in Flutter – Flutter Community – Medium
https://ift.tt/2Rq7PyB

November 30, 2018 at 09:31PM by deven9852
https://ift.tt/2Q2own0
New post on /r/flutterdev subreddit:

Frequent beta channel Flutter updates? What do they do?
I know it's probably because of the Flutter event happening soon but this is pretty crazy. The changelog is completely outdated: https://github.com/flutter/flutter/wiki/Changelog​Two beta updated in a day? Four in four days?​https://flutter.io/docs/development/tools/sdk/archive?tab=windows#windows​What are all these updates doing?

November 30, 2018 at 09:14PM by SocialMammoth
https://ift.tt/2QvNKJS
New tweet from flutterio:

#FlutterLive is a few days away and we’re about to take off with our pal, Dash. Follow our mini #MyFlutterStory as we make our way from Mountain View to London! 🌴☀️✈️ 🌧️🇬🇧

And if you can’t come yourself, be sure to watch the livestream 👉 https://t.co/eRO1vF0tJc#ImWithDash pic.twitter.com/EbVaPwPqRd— Flutter (@flutterio) November 30, 2018

December 01, 2018 at 12:06AM
http://twitter.com/flutterio/status/1068642348324708355
New post on Flutter Dev Google group:

CupertinoTabBar navigate to new Screen
Hi, is it possible to navigate to a new Screen by clicking one of the BottomNavigationBarItem? [image: Screenshot 2018-12-01 at 13.51.30.png] As you can see above I would like to navigate to a new screen if I click on the New Screen Bar Item. This is my code below: Widget build(BuildContext

December 01, 2018 at 07:56AM by Marc Andrew
https://ift.tt/2FR4irR
New post on /r/flutterdev subreddit:

FlutterForce — #Week 3 – Medium
https://ift.tt/2Snrn6B

December 01, 2018 at 12:35PM by flutterist
https://ift.tt/2E80T6k
New post on /r/flutterdev subreddit:

Flutter Best Practices when it comes to classes and their instances.
I'm sorry about the title, couldn't think of a better one.Basically, I have a whole bunch of screens and they are all similar, so I can create them using one single class. Let's call this class MyScreen. My concern is, if I want to a MyScreen instance, should I just pass the data like so:Navigator.push(context,MaterialPageRoute(builder: (context) => MyScreen(someData:someData)));Using this data, the MyScreen class has a switch statement, such that, depending on the passed data, it can show the desired information.Now, should I use this method of creating new instances everytime some button is tapped to navigate to a new route, or should I just create a list of Widgets and store all the possible MyScreen instances inside of it, like soList <Widget> allMyScreenInstances = [MyScreen(someParam1),MyScreen(someParam2),...];and then call each screen from HomeScreen by just having the index of a particular item in that list.TLDR; Should I create new instances everytime a button is tapped, or should I create them, store them, and then retrieve them by their index every time the button is tapped. And why?

December 01, 2018 at 04:15PM by Yahiabouda
https://ift.tt/2E5eco5
New post on Flutter Dev Google group:

TextField() Validation
Can I validate input from user using TextField()?

December 01, 2018 at 05:16PM by Falak Sabbir
https://ift.tt/2P7Gkb7
New tweet from flutterio:

Lots of good guesses, but China currently has the most Flutter devs, including those who worked on @AlibabaGroup's app! Here's the next piece of the puzzle.

We can't wait for #FlutterLive. It's been a long road ... how long exactly? What year did the Flutter Project start? pic.twitter.com/jSiO4JrCYY— Flutter (@flutterio) December 1, 2018

December 01, 2018 at 05:23PM
http://twitter.com/flutterio/status/1068903453299261441
New post on Flutter Dev Google group:

how to use SVG in flutter
need help how to use svg in flutter where how to put svg in pubspec.yaml until use in my script

December 01, 2018 at 05:49PM by Rill The End
https://ift.tt/2U3t1Mt
New post on /r/flutterdev subreddit:

Sharing data across different screens.
In a previous post, I wrote that I couldn't handle complex route navigation. I sort of found a workaround.I simply passed the current "buttonKey" as a parameter to the second screen, so that the second screen constructs a new "Key" based on that button and displays a particular view. Now I want this URL-like-route string to be stored somewhere in a widget, such that any screen can access that route. I checked out the InheritedWidget, but apparently, it can only pass data in the same widget-tree, which doesn't help my case.I'm looking for a way to store the route string which gets constantly updated in some InheritedWidget-like Widget, so that I can access it from any screen. Is there a way to do that? Or should I keep passing params all the way down to the last screen?​

December 01, 2018 at 07:30PM by Yahiabouda
https://ift.tt/2BM3EHV
New post on /r/flutterdev subreddit:

Desktop Environment In Flutter?
A simple desktop environment would require a window manager, top panel and application menu. What I am thinking is implementing a small Linux desktop environment. Do you guys think this can be done in flutter?

December 01, 2018 at 11:35PM by Emwat1024
https://ift.tt/2rgoVne
New post on /r/flutterdev subreddit:

Reactive Programming - Streams - BLoC - Practical Use Cases
https://ift.tt/2U6Hmrn

December 02, 2018 at 09:14AM by etca2z
https://ift.tt/2zAH9nE
New post on Flutter Dev Google group:

Search Delegate Problem
Need help please. i got a problem where search delegate text box not working after navigate to other page over it. i attached a video preview here. thanks for help!

December 02, 2018 at 12:47PM by Reaksmey Kevin
https://ift.tt/2E8UZld
New tweet from flutterio:

And the answer is ... we kicked off the Flutter Project in 2014! Here's another piece. Hmm, what could it be? 🤔 #FlutterLive

See the next question below! pic.twitter.com/tj42s96pG8— Flutter (@flutterio) December 2, 2018

December 02, 2018 at 02:37PM
http://twitter.com/flutterio/status/1069224020070014976
New tweet from flutterio:

Flutter's come a long way since 2014, but exactly how much has it changed? Flutter was originally based on a different Google product. Which product was it? #FlutterLive— Flutter (@flutterio) December 2, 2018

December 02, 2018 at 02:37PM
http://twitter.com/flutterio/status/1069224021613531136