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

Which Java version are you running with Flutter?
I'm going crazy here. Code apparently works on another machine, but doesn't behave the same on my machine in the office.

December 11, 2018 at 01:50PM by somenick
https://ift.tt/2C5RhGP
New post on /r/flutterdev subreddit:

Row example from flutter website not running. Help.
I am learning flutter layout and I copied code from flutter website, row example:import 'package:flutter/material.dart';
void main() {
runApp(
Row(
children: <Widget>[
Expanded(
child: Text('Deliver features faster', textAlign: TextAlign.center, textDirection: TextDirection.ltr),
),
Expanded(
child: Text('Craft beautiful UIs', textAlign: TextAlign.center, textDirection: TextDirection.ltr),
),
Expanded(
child: FittedBox(
fit: BoxFit.contain, // otherwise the logo will be tiny
child: const FlutterLogo(),
),
),
],
)
);
}But it is not working at all. Giving errors

December 11, 2018 at 05:07PM by one_lame_programmer
https://ift.tt/2EiJ4AP
New post on /r/flutterdev subreddit:

User auth/login flow for different user types
Hi Everyone!​I am make Flutter app with Firebase backend to help people connect with DIY experts.Normal users can sign up using social auth.But need to verify experts are real experts. So when they apply we interview them and if they pass we sign them up. My idea is to enable email/password auth for these expert users. This way we can add them as user via Firebase console with email/password. Then update the database via console with the user details. In app will have separate login flow for experts - separate button for ‘experts’.I am not experience in develop app for two such different user types. I have not see any open source implement in Flutter. Any thought on my idea or any advice on better way?​Thanks!

December 11, 2018 at 06:30PM by Flutter_Dev
https://ift.tt/2Qod2KK
New post on /r/flutterdev subreddit:

I interviewed my coworkers (a.o. our Technology Manager) about Flutter 1.0, this is their opinion about the impact and future of Flutter
https://ift.tt/2RTsg7e

December 11, 2018 at 06:12PM by Ljosmyndun
https://ift.tt/2SEb3yw
New post on /r/flutterdev subreddit:

An open source community-curated list of Flutter conferences around the world
https://ift.tt/2EeH2S8

December 11, 2018 at 07:08PM by mobilehackers
https://ift.tt/2RMb7w1
New post on /r/flutterdev subreddit:

What's currently the best option for BLE?
Hello I am trying to essentially create a UART service with Flutter, are there any available libraries for this?​In my own research I have found these, that both tell me not to trust themhttps://github.com/itavero/flutter-ble-uarthttps://github.com/Polidea/FlutterBleLib​and thishttps://github.com/pauldemarco/flutter_bluewhich does not directly support what I am trying to do.

December 11, 2018 at 07:32PM by Littlepush
https://ift.tt/2GdDvGd
New post on Flutter Dev Google group:

Is it possible to have widgets animations happened at the same time during the hero animation?
I have two pages. There is Hero animation when transition from page #1 to page #2. At the same time, I like to have a text animated slide left and fade out when page #1 goes away. Also, have one text slide and fade in from right edge when page #2 is begin to show. Wondering if these three

December 11, 2018 at 07:55PM by Shih-Chang Hsiung
https://ift.tt/2C4Podr
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