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

Flutter + vscode Github versioning integration
For some reason I was always afraid to use version control system because it seems very complicated to me with commits pulls pushes merges.I have an overall idea of what they are but I am too afraid to use them with my app code. I fear i would do something wrong and The code would be in an unrecoverable state after a mistake.Do any of you have any resources for setting up and using github inside vscode for flutter development? Preferably a tutorial video or an article. I am tired of zipping my code folder and backing it up.

May 30, 2019 at 10:31PM by aytunch
http://bit.ly/2XnR7D7
New post on /r/flutterdev subreddit:

Flutter web responsive portfolio app
Here is the mobile meets web. Yeah! my first ever responsive portfolio website built using flutter web with love​Code: (link: https://github.com/TakeoffAndroid/takeoffandroid.github.io) github.com/TakeoffAndroid…Website: (link: https://takeoffandroid.github.io/#/) takeoffandroid.github.io/#/

May 30, 2019 at 07:52PM by takeoffandroid
http://bit.ly/2W4abEK
New post on Flutter Dev Google group:

Compiler errors? Please help a noob
This is so far above my head! Does anyone know what is going on so I can run this app in the simulator again? Launching lib/main.dart on iPhone XS in debug mode... Compiler message: file:///Users/brennan/flutter/.pub-cache/hosted/ pub.dartlang.org/flutter_sticky_header-0.3.4/lib/src/widgets/s

May 31, 2019 at 06:18AM by Brennan Altringer
http://bit.ly/2YWOYyj
New post on /r/flutterdev subreddit:

MetaFlutter: An app to create Flutter layouts on the phone (Open Source)
I created an open source project to allow users to build Flutter layouts on the phone.Build out an idea you had instantly, try out something you've never tried before or just use it as a tool for Flutter layout demonstrations.Check it out:PlayStore LinkSource Code

May 31, 2019 at 08:11AM by deven9852
http://bit.ly/2wsL7Nv
New post on Flutter Dev Google group:

Flutter vs Unity
Hi I bumped into a discussion with my friends who are app/game developers. Many of them build games with unity that i had not heard of previously. They had not heard of flutter. This got me wondering what's the positioning of these two platforms and specially what's the unique differentiation

May 31, 2019 at 09:43AM by Jagan Gmail
http://bit.ly/2MnmufK
New post on Flutter Dev Google group:

MySql Database Connectivity using PHP
Hi everyone, I want to understand in detail about how to connect to MySql using PHP in flutter. Is there any point/videos/channel where I can find it? I want to understand how to call data from MySql in my flutter application.

May 31, 2019 at 11:39AM by Parul Nandwani
http://bit.ly/2HL6kbD
New post on /r/flutterdev subreddit:

Slide Puzzle - Flutter for Web sample updated with Provider (pkg: provider)
http://bit.ly/2KhZhsW

May 31, 2019 at 11:47AM by EngineerScientist
http://bit.ly/2W6xtK4
New post on /r/flutterdev subreddit:

Flutter Json Table Widget
This Flutter package provides a Json Table Widget for directly showing table from a json(Map).https://pub.dev/packages/json_table

May 31, 2019 at 02:12PM by ayushpguptaapgapg
http://bit.ly/2HLhQDT
New post on /r/flutterdev subreddit:

How to Share object while Routing? (Named Routes)
http://bit.ly/2EKLzez

May 31, 2019 at 03:45PM by nitishk72
http://bit.ly/3176EcG
New post on /r/flutterdev subreddit:

Article on Superhero Interaction app developed in Flutter
http://bit.ly/2Xh8FRa

May 31, 2019 at 02:49PM by pinkeshdarji
http://bit.ly/2JPSyXM
New post on Flutter Dev Google group:

Headless flutter on MacOS
On iOS I code : ``` _engine = [[FlutterEngine alloc] initWithName:@"io.flutter" project:nil]; [_engine runWithEntrypoint:nil]; ``` It works fine. But how can I start a Flutter engine on MacOS ? FlutterMacOS.Framework does not seem to have a Flutter.h and FlutterMacOS.h

May 31, 2019 at 04:25PM by Larpoux
http://bit.ly/2JLf7ww
New post on /r/flutterdev subreddit:

Flutter Json Table Widget: Create table from json array directly
http://bit.ly/2EWwO8D

May 31, 2019 at 04:23PM by ayushpguptaapgapg
http://bit.ly/2EWWIJp
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