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

A GitHub template for Flutter to share all business logic between web, mobile and desktop in one repo. The goal of this repo is to have everything you need to start with flutter desktop + mobile simply by forking the project.
http://bit.ly/2WA9jrT

June 13, 2019 at 04:55PM by EngineerScientist
http://bit.ly/2WD1qGO
New tweet from FlutterDev:

We have surpassed 50K followers on Twitter!

Three cheers for our Flutter Community who have made the dream a reality.

Stick around for more updates, news, protips, #WidgetoftheWeek, #BoringShow, and #FlutterFriday. pic.twitter.com/AQCIl8rbM3— Flutter (@FlutterDev) June 13, 2019

June 13, 2019 at 06:00PM
http://twitter.com/FlutterDev/status/1139200781905727489
New post on /r/flutterdev subreddit:

flutter_bloc or Provider?
Which plugin will you recommend for state management in flutter? 1. flutter_bloc 2. Provider

June 13, 2019 at 06:13PM by vaibhav_2018
http://bit.ly/2KgEAhR
New post on /r/flutterdev subreddit:

Automatic cloud database sync solutions
I'm looking to build an app that has a common database between all users. Going to be around 4 thousand records. This will be along side an encrypted database containing private data.I'd rather not have to deal with syncing of this database between the app and the backend.I'm currently using Firestore right now, but the limited search is annoying me. Full text search is only available with Agolia while online. I'm expecting internet to be a problem at times with my users working in odd corners of the hospital.Are there any good alternatives for flutter? I need a scalable database sync with full text search while offline.

June 13, 2019 at 06:43PM by DoPeopleEvenLookHere
http://bit.ly/2KiXC6Y
New post on /r/flutterdev subreddit:

Flutter Github issue tracker is unmaintained mess
If you look at issue tracker you will see very scary number on Flutter issues tracker - 5000+You might think this can be acceptable, Flutter is "popular" project... BUT for comparison react-native has 500 open tickets.​However that's not only about number of open tickets. Inactive tickets can be closed by bots. Worst part: there are bunch of issues which are not even looked by Flutter team. If you inspect amount of tickets which are:Created not by Flutter teamUnlabeledWithout response by Flutter teamOlder then 1 week (if we give big time window to for team to check tickets :) )you will find shockingly huge amount of such tickets. Tickets which reports crashes, tickets with failing builds, etc with zero reposes & unlabeled few weeks or even months old. Situation looks like this: flutter-issue-tracker.png (red - not addressed by Flutter team).​I went through top projects on GH (Tensoflow, kubernetes, vuejs, react, react-native, bootstrap, vscode). You will not find situation such terrible in any of these as it is in Flutter. Flutter is in it's own category of ignoring issue tracker.​So sorry but when I hear that Flutter team is working very closely with community I get triggered very badly. That is not a issue tracker of team which works with community.

June 13, 2019 at 06:40PM by audriusz
http://bit.ly/2MLWMBM
New post on /r/flutterdev subreddit:

BLOC state managment pattern well implemented with flutter shopping-app
Hello guys , if you are wondering how to dive into state managment with flutter , check this repo [https://github.com/loicgeek/shopper-flut](shopper-flut) , it's a flutter project wich use bloc state managment pattern for an e-commerce app .what 's doneshopping cartfavorite listcomming SoonIn fews days , i will dive into : - authentication system with firebase using same pattern.any idea is welcome. give a [https://github.com/loicgeek/shopper-flut](star) if you like it , thanks.

June 13, 2019 at 07:06PM by loicgeek
http://bit.ly/2RdaH2o
New post on Flutter Dev Google group:

You are killing Flutter!!!
I would like to know why flutter files are always outgraded compare to what they should be when using Flutter in Android Studio????? Could you please: update the Android Gradle plugin to version 3.4.1 and gradle to version 5.1.1 and ext.kotlin_version to 3.1.1 It is very unpleasant to have to do

June 13, 2019 at 07:46PM by Bened
http://bit.ly/2MM3dFe
New post on /r/flutterdev subreddit:

Live with Emily Fortune
Emily Fortuna, google developer and our Queen of the Flutter will give a live interview to the Flutterando community in a moment.https://youtu.be/Sn_eQpwrRNI

June 13, 2019 at 07:50PM by AlvaroVasconcelos
http://bit.ly/2KKj7x2
New post on /r/flutterdev subreddit:

Codelab: Basic Flutter layout (now using new Flutterpad embedded coding environment)
http://bit.ly/2LuTvWR

June 13, 2019 at 07:34PM by Darkglow666
http://bit.ly/2Rg1gPR
New post on /r/flutterdev subreddit:

Flutter plugin for Lookback - a realtime user research/feedback tool
http://bit.ly/2KOKBBJ

June 13, 2019 at 08:41PM by MisterJimson
http://bit.ly/31y2U4b
New post on Flutter Dev Google group:

Fwd: Change to debug mode for Semantics
---------- Forwarded message --------- From: Dan Field Date: Thu, Jun 13, 2019 at 1:42 PM Subject: Change to debug mode for Semantics To: Today, Flutter only builds the semantic tree if an a11y service is enabled*. This results in a

June 13, 2019 at 11:17PM by Dan Field
http://bit.ly/2F9eg4Q
New post on Flutter Dev Google group:

From Switch Button Light Mode to Dark Mode
Hello, I want to know how we do Light Mode to Dark Mode our application in flutter.

June 14, 2019 at 09:19AM by Kunal Pitale
http://bit.ly/2IgfgGo
New post on Flutter Dev Google group:

Flicker api to horizontal listview
I have class provider where i am getting json of flicker and converting them into image url but i want that url to be used in horizontal listview builder below is my flickrApiProvider class import 'package:http/http.dart'; import 'dart:convert'; class FlickrAPIProvider { getLinks(page) async {

June 14, 2019 at 09:32AM by mahantappa b k
http://bit.ly/2XcasKv
New post on /r/flutterdev subreddit:

Migration of existing Flutter app using BLOC pattern to the Web using Flutter-Web
So, I have been able to migrate my Flutter app which I built a couple of months ago using BLOC pattern to the web using `flutter-web`. There was no need to change the core code except changes required for setup and removing Mobile specific libraries.​Presently as `flutter-web` is still in technical preview, some setup code had to be changed to make the app run on the web. Unlike the ease to parallelly build and run ios and android apps from the same code, it's not possible to do the same to generate the web version now. For example, mobile-specific dependencies like `cupertino_icons` had to be removed from `pubspec` manually to build the web version as there is no way to handle it real time as of the moment. So two separate branches had to be maintained​Here is the branch for flutter mobile: https://github.com/suchoX/addItAnd here is the branch for Flutter Web: https://github.com/suchoX/addIt/tree/web-support​You can also Try the app here. It works perfectly on the browser (Tried on Chrome and Safari) for both your computer and mobile, both landscape and portrait​https://suchox.github.io/addIt/#/NOTE: There are some bugs in the core logic as I hadn't had the chance to QA the app completely.

June 14, 2019 at 08:25AM by suchox
http://bit.ly/2F5Mpm8
New post on /r/flutterdev subreddit:

Help finding a widget type.
I have a strange question because it can have very wide range of answers i guess. I saw a tutorial once about making tiles with background and overlay text, problem is that i don't remember what it was called or how it was done, i was looking for something else at the time and i did not paid attention. :( please help.

June 14, 2019 at 11:43AM by RadiantCity
http://bit.ly/2KPsStZ