Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on Flutter Dev Google group:

VS Code extensions v3.1 - Flutter UI Guides preview
Hey all, New versions of the Dart/Flutter extensions for VS Code are live. Release notes included below (and online ). Preview: Flutter UI Guides - #1731 : An early preview of Flutter UI Guides is

May 31, 2019 at 05:56PM by Danny Tuppeny
http://bit.ly/311B6VF
New post on /r/flutterdev subreddit:

Help flutter var to List (remove duplicate from list)
I first tried with DISTINCT clause in db but than not working on two colums.. Now im trying to just remove it from list.​​Future<List<List<Widget>>> getDetailList(List<int> list, String column) async {List<Widget> list1 = List();List<Widget> list2 = List();List<Widget> list3 = List();List<List<Widget>> listFromDB = [list1, list2, list3];var databasesPath = await getDatabasesPath();String path = join(databasesPath, 'books.db');Database database = await openDatabase(path, version: 1);for (int i = 0; i < list.length; i++) {var result = await database.rawQuery('SELECT DISTINCT $column FROM planner WHERE id = ${list[i]}');list1.add(_item(result[0][column].toString()));...}}​I found online soluton like this:import 'package:queries/collections.dart';void main() {List<String> list = ["a", "a", "b", "c", "b", "d"];var result = new Collection(list).distinct();print(result.toList()); }//result is: [a,b,c,d]So how can i use this method in my example and basicly convert that var result to List<Widget>. so i can use it latter..

May 31, 2019 at 06:10PM by MixBex
http://bit.ly/2JOZQuy
New post on Flutter Dev Google group:

image picker cannot find symbol
Launching lib/intro.dart on Android SDK built for x86 in debug mode... Initializing gradle... Resolving dependencies... Running Gradle task 'assembleDebug'... registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection) registerResGeneratingTask is deprecated, use

May 31, 2019 at 07:26PM by Ancorp Team
http://bit.ly/2EL6LB9
New post on Flutter Dev Google group:

New DevTools Releases - Opt-in analytics, dark theme improvements
Happy Friday Flutter Dev! Here are the details of new DevTools releases! General Updates - We’ve added opt-in analytics to send usage statistics and crash reports of DevTools to Google. This will help us improve our tools to best meet the needs of our users. -

May 31, 2019 at 08:27PM by Nilay Yener
http://bit.ly/2W0clFq
New tweet from FlutterDev:

We look forward to seeing what you build for the International Flutter Hackathon!

Starting in a few hours in Aotearoa, NZ, the 24 hour hackathon organized by @FlutterComm will continue to 71 cities on June 1st.

Join the #hack19 fun at a hub near you &rarr; https://t.co/sGaIKQkiuH pic.twitter.com/XhQRdiNdBd— Flutter (@FlutterDev) May 31, 2019

May 31, 2019 at 10:10PM
http://twitter.com/FlutterDev/status/1134552733971812358
New post on /r/flutterdev subreddit:

New DevTools Releases - Opt-in analytics, dark theme improvements
http://bit.ly/2W0clFq

May 31, 2019 at 11:22PM by Purple_Pizzazz
http://bit.ly/2W4bcwD
New post on /r/flutterdev subreddit:

The new UI Guides feature for Flutter in Visual Studio Code is now available in v3.1 of Flutter extension
http://bit.ly/2WyQ5XI

May 31, 2019 at 10:02PM by EngineerScientist
http://bit.ly/2Knb88O
New post on /r/flutterdev subreddit:

[Question] What is the best practices for UI coding when working with flutter_bloc
When using bloc pattern, what is the best practice in subdividing the UI in code?Have you come across any readings that I can follow?

June 01, 2019 at 12:50AM by marcoleongdev
http://bit.ly/2wtVX5B
New post on Flutter Dev Google group:

Listen to firestore changes on list or sub-collection?
I have a users collection in firestore, each user has a number of arrays with information that I'm showing in my app using streambuilders. But as I understand it in firestore you can only listen to document changes, so instead of each streambuilder listening to its corresponding user array, I

June 01, 2019 at 01:02AM by Mattias Månsson
http://bit.ly/2WhSiHC
New post on /r/flutterdev subreddit:

Route Guard and Navigation
Hi all, I understand Flutter is quite new and I often find it hard to make sense of the docs. I also understand that some concepts are still not fully formed. It's with regard to this that I'd like to solicit your opinions on how to handle navigation with route guards (i .e. having routes that require one to be logged in). What has worked for you, and what hasn't?

June 01, 2019 at 02:04AM by mcalila
http://bit.ly/2HNPqcI
New post on /r/flutterdev subreddit:

#Hack19 - International Flutter Hackathon (24 Hour Stream)
https://www.youtube.com/watch?v=35gRqoS4RQY

June 01, 2019 at 01:11AM by PedroMassango
http://bit.ly/2Kin63I
New post on /r/flutterdev subreddit:

an't pass data from home to results_page by Navigator.push() method
There is a problem with this flutter app, and I cant find the solution as there is no error. what happens is when it navigates from home to the result page, the calculations doesn't happen or the values are not sent I don't understand what's happening here. Any help is much appreciated. here is the link to the git repo https://github.com/TauqeerAli/bmi-calculator-flutter2Navigator.push( context, MaterialPageRoute( builder: (context) => ResultsPage( bmiResult: calc.calculateBMI(), resultText: calc.getResult(), interpretation: calc.getInterpretation(), ),There are no error messages. That is the problem.

June 01, 2019 at 02:54AM by trktech
http://bit.ly/2QE9Ojd
New post on /r/flutterdev subreddit:

Let’s start our Just Java project by simple ‘set up’ tips which you’ll surely find beneficial in your upcoming projects.
http://bit.ly/2JQfgPv

June 01, 2019 at 02:24AM by idreesBughio
http://bit.ly/2Mm5ZR2
New post on /r/flutterdev subreddit:

ToDo List app using flutter
Hey everyone! I am a new flutter user and just finished publishing my first flutter app made without a tutorial and would really appreciate some feedback on UI, code style, and app functionality. Really any feedback is greatly appreciated! I have linked the GitHub codebase and google play store download below. Thanks!!​Google play store: https://play.google.com/store/apps/details?id=com.chatapp.to_do_listGithub: https://github.com/ahh1539/to_do_list

June 01, 2019 at 04:47AM by ahh1258
http://bit.ly/2QFtTWf