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

A responsive web portfolio built in flutter, Check out now at https://ift.tt/2JnLzUc
https://ift.tt/2Lb1wQ6

July 09, 2019 at 07:44AM by ashishrawat2911
https://ift.tt/2Xx1Ud7
New post on /r/flutterdev subreddit:

sqflite and state management
I wonder if the right way to retreive data from a local data base is just to use the future builder or there exists a way to integrate state management concepts with fetching the datathanks in advance.

July 09, 2019 at 10:14AM by byshy
https://ift.tt/2JziUue
New post on /r/flutterdev subreddit:

Problems with UiThread after some upgrade
Does anyone experienced problems with many flutter packages with error "Methods marked with @UiThread must be executed on the main thread." after some update? Recently everything stopped working for me bcs of that

July 09, 2019 at 12:52PM by kubenqpl
https://ift.tt/2G3cjrc
New post on /r/flutterdev subreddit:

Embed Ustream on Flutter App.
Hey guys am relatively new to flutter and would like to embed live stream from Ustream on my flutter app. Can Anyone help me on how to do this.

July 09, 2019 at 02:46PM by iansamz
https://ift.tt/32jBgbc
New post on /r/flutterdev subreddit:

Which stack should I use for a flutter e-commerce app?
I feel lost when googling this subject since I have a feeling I am not sure what to google and which questions to ask.I am currently learning flutter and plan on using it to develop an ecommerce app for an existing business. However, I am not sure what other technologies I should look at in order to help me in this journey. I am talking about databases, admin dashboards, etc. Or are these all items I should be building myself from scratch?If anyone can point me in the right direction I'd be grateful. Thanks!

July 09, 2019 at 04:56PM by Grenddit
https://ift.tt/2G0rxNt
New post on /r/flutterdev subreddit:

Sneak peek of my new project. Flutter grid animation.
https://ift.tt/2JAovAx

July 09, 2019 at 05:38PM by divyanshub024
https://ift.tt/2JmZBpc
New post on /r/flutterdev subreddit:

BitmapDescriptor.fromAssetImage returns null
Hi everyone,​Since fromAsset is deprecated and doesn't provide size functionality, I moved to use fromAssetImage (which is a future function), however it is not working properly where I get default marker due to null.
var Icon_num = 1; icon: correct_icon(Icon_num) 
BitmapDescriptor correct_icon(String num) { var config = ImageConfiguration(size: Size(32, 32)); String Image_String; switch (num) { case "1": Image_String = 'assets/num/1.png'; break; case "2": Image_String = 'assets/num/2.png'; break; case "3": Image_String = 'assets/num/3.png'; break; case "4": Image_String = 'assets/num/4.png'; break; case "5": Image_String = 'assets/num/5.png'; break; case "6": Image_String = 'assets/num/6.png'; break; case "7": Image_String = 'assets/num/7.png'; break; case "8": Image_String = 'assets/num/8.png'; break; case "9": Image_String = 'assets/num/9.png'; break; default: Image_String = 'assets/num/0.png'; break; } BitmapDescriptor myIcon; BitmapDescriptor.fromAssetImage(config, Image_String).then((onValue) { setState(() { myIcon = onValue; }); }); return myIcon; } 
​To diagnose this code, I have added, print('Before) before the BitmapDescriptor.fromAssetImage function, print('inside') inside the function and print('after') after the function. What I got is:​Beforeafterinside​So I think the code is not being executed properly.

July 09, 2019 at 07:00PM by abuchery
https://ift.tt/30nFpcv
New post on /r/flutterdev subreddit:

My first flutter app
Hey guys i created an app using flutter and by learning from tutorials available online. Have a look at it and tell me how does it look and feel and send me your reviews.​https://play.google.com/store/apps/details?id=in.webxstudio.android.quizappIt is an opensource app so you guys can check the code athttps://github.com/gat786/quizappnew

July 09, 2019 at 08:00PM by Gat786
https://ift.tt/2YJTD70
New post on Flutter Dev Google group:

bidirectional list
how can i achieve a bidirection scrollabable list, i cant seem to find an example for the this plugin in https://ift.tt/2S75OIB

July 09, 2019 at 09:08PM by Motebang Mokwatsi
https://ift.tt/2LblQkb
New post on Flutter Dev Google group:

Updating one field using Firebase
Hi, I am quite new to Flutter and just started playing with Flutter and Firestore. Does anyone know if it's possible to update only one particular field in Firestore document? I don't want to set again all the fields, but based on documentID only update ones. What I am trying to do is to use

July 09, 2019 at 09:15PM by Robert Grześkowiak
https://ift.tt/2XBMWaS
New post on Flutter Dev Google group:

v1.7.8+hotfix.2 available in the stable channel...
By now, you may have noticed that v1.7.8+hotfix.2 is now available in our stable channel! This includes a whole passel of fixes and features, but in particular it addresses the upcoming Google Play Store requirement that app submissions include 32-bit and 64-bit bundles, as described in

July 09, 2019 at 09:52PM by Ray Rischpater
https://ift.tt/2NFf0FA
New post on /r/flutterdev subreddit:

Is Overlapping ListItems (Puzzle shaped items) inside a ListView possible?
🧩 🧩🧩Lets say I have puzzle pieces as 'ListItem's and I want to have infinite vertical scrolling for this 'ListView'. The contents of the puzzle pieces are taken from server.The problem I am having is the items shapes are not simple rectangles, but instead puzzle piece shapes. These interlock each other meaning the 'ListItem's overlap along their height.What would be a strategy to overcome this issue in Flutter? I know about stacks and can easily make a view using stack and positioned puzzles inside of it. However since i need them to be scrolled infinitely I don't know what the performance would be

July 09, 2019 at 09:45PM by aytunch
https://ift.tt/2JnrFJ4
New post on /r/flutterdev subreddit:

Has anyone tried using absurdly large DataTables?
Specifically, I'm talking about this one.I'm trying to show this table inside a Flutter app for some testing. API is here, and it's based on the table here. I was hesitating between showing a list of Cards, ListTiles, an ExpansionPanel or a DataTable.I've looked at some tutorials to see some screenshots on what it looks like before trying to implement it, but they all use a reasonable amount of columns, which makes it impossible to imagine what would happen if a DataTable was needlessly large. Is it responsive?So... How do you personally show such tables?

July 09, 2019 at 10:43PM by NatoBoram
https://ift.tt/2Y2m1Va
New post on /r/flutterdev subreddit:

Flutter 1.7 stable
https://ift.tt/2JF31Ts

July 10, 2019 at 02:38AM by aagarwal1012
https://ift.tt/2XCh5a2