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

Has Flutter/Dart any advantages over Swift if I target only iOS?


December 11, 2018 at 07:50PM by ta_u
https://ift.tt/2PxOxp8
New post on /r/flutterdev subreddit:

MLkit in flutter?
https://ift.tt/2Eh90Nc

December 12, 2018 at 03:54AM by chinmay_shah
https://ift.tt/2Pxj5Y4
New post on Flutter Dev Google group:

Using MLkit?
How does performance and development complexity differ between native and using flutter?

December 12, 2018 at 04:08AM by Chinmay Shah
https://ift.tt/2Efkoca
New post on Flutter Dev Google group:

Fire store question
If I have a document snapshot is it possible to build a list out of the document data. My current document has a map called locations which is a map of different points of interests. I know I can build the list view with a collection of documents and each list item would represent a different

December 12, 2018 at 06:50AM by Tristian Nugent
https://ift.tt/2C6Zjzo
New post on /r/flutterdev subreddit:

Adding to list requires 2 parameters?
Hi, im having this problem in flutter i need to add elements to a LIST with the .add but it tells me that it requires 2 parameters, value and repetition. The dart documentation says you only need 1 parameter.pd: using dart 2, vs code and the flutter framework.pd2:import 'dart:async';
import 'dart:io';
import 'dart:core';​​https://i.redd.it/ozzwf2u6lr321.png

December 12, 2018 at 04:15AM by leaver123001
https://ift.tt/2RUdLjI
New post on /r/flutterdev subreddit:

question about cost of widgets
so i can't find anywhere in the docs (or anywhere) anything about the cost of widgets when it comes to: memory, cpu usage, storage, etc. i think that this would be super useful for my and everybody's projects, so I can help optimize my app. so if anybody can find this information anywhere, i would really appreciate it. and if anybody would want to work on a program that could display this, i'm totally down. DM me.

December 12, 2018 at 04:05AM by alaricat
https://ift.tt/2Qq5abG
New post on /r/flutterdev subreddit:

Flutter: reducing widgets boilerplate
https://ift.tt/2Gf8ula

December 12, 2018 at 08:49AM by remirousselet
https://ift.tt/2rzI9nC
New post on /r/flutterdev subreddit:

Best way to take auto screenshots in Redux Flutter app
I need to take some screenshots of my Flutter App to App Store and Google Play. Should I create some widget tests or is there a better way? It's Flutter Redux app.

December 12, 2018 at 09:38AM by edi_smooth
https://ift.tt/2SJtVMv
New post on /r/flutterdev subreddit:

parsing and rendering PDF's in flutter
Can anyone suggest a library or package or a way to parse and render PDFs in DART, Flutter

December 12, 2018 at 11:36AM by garvHasy
https://ift.tt/2Bb3uZh
New post on /r/flutterdev subreddit:

Is it possible to export swift app to flutter to start cross platform coding?
Hey all, I'm new to flutter and i'm trying to use it to help me cross platform code with an app I've already started working on in swift. I'm not as familiar with flutter and want to see if there were anyway to import what I already have into flutter and continue working?I know its a longshot but, I got to know if this is possible.

December 12, 2018 at 05:24PM by Theprivateshow_
https://ift.tt/2UGQMKq
New post on Flutter Dev Google group:

Flutter Firebase Auth Signout
Hey everyone! I'm a new developer and hopefully this place is nicer that Slack Overflow.... -_- I followed this tutorial for my flutter app: (The link is the final video of 6) https://www.youtube.com/watch?v=GDrlQ0L4ogg&t=358s I however can't seem to figure out how to get my signout to work.

December 12, 2018 at 05:51PM by Heftykat
https://ift.tt/2SGmqpN
New post on /r/flutterdev subreddit:

BLOC and Snackbar
Using the BLOC pattern, I created an output stream of string, on which I send error or success messages to keep the user updated about background operations.The problem is I want to show this messages in a Snackbar, which need a BuildContext to be shown, so I tried to add this at the beginning of my build method :dart myBloc.onLoadResultMessage.listen((message) => Scaffold.of(context).showSnackBar( SnackBar( content: Text(message) ) ), );It kinda work but show me the same message multiple times. I thought it was because of multiple call to the build method but even if I add a bool isListening to make sure it only listen once, I still have the same problem.What am I doing wrong ?

December 12, 2018 at 06:08PM by Bencri
https://ift.tt/2EkNsyS
New post on /r/flutterdev subreddit:

Is there anything wrong with defining your BLoC as a global variable?
Most of the tutorials on BLoC use Inherited Widgets. The way I do it is to make a global variable inside of my BLoC class (final bloc = MyBloc() ) and use this variable wherever I need it.Are there any drawbacks to this approach?

December 12, 2018 at 06:59PM by EibeMandel
https://ift.tt/2rA15mi