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:
December 11, 2018 at 05:07PM by one_lame_programmer
https://ift.tt/2EiJ4AP
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 errorsDecember 11, 2018 at 05:07PM by one_lame_programmer
https://ift.tt/2EiJ4AP
reddit
r/FlutterDev - Row example from flutter website not running. Help.
1 vote and 1 comment so far on Reddit
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
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
reddit
r/FlutterDev - User auth/login flow for different user types
1 vote and 0 comments so far on Reddit
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
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
In The Pocket
How we at In The Pocket look at Flutter 1.0 | In The Pocket
Last Tuesday, Google launched the first stable release of Flutter, its open source, cross-platform UI toolkit and SDK. At In The Pocket, we're experimenting with Flutter since the beta launch.
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
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/FlutterBleLiband 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
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/FlutterBleLiband 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
GitHub
GitHub - itavero/flutter-ble-uart: Package to integrate UART over Bluetooth Low Energy into your Flutter app
Package to integrate UART over Bluetooth Low Energy into your Flutter app - itavero/flutter-ble-uart
New tweet from flutterio:
The Hero Widget makes transitions between screens more obvious and better looking.
Click for more #WidgetoftheWeek tips! ↓ pic.twitter.com/293TJwFdUe— Flutter (@flutterio) December 11, 2018
December 11, 2018 at 07:53PM
http://twitter.com/flutterio/status/1072564924868685824
The Hero Widget makes transitions between screens more obvious and better looking.
Click for more #WidgetoftheWeek tips! ↓ pic.twitter.com/293TJwFdUe— Flutter (@flutterio) December 11, 2018
December 11, 2018 at 07:53PM
http://twitter.com/flutterio/status/1072564924868685824
Twitter
#widgetoftheweek hashtag on Twitter
15h ago @FlutterDev tweeted: "✏️ Writing your own button controls from.." - read what others are saying and join the conversation.
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
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
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
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
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
reddit
r/FlutterDev - Has Flutter/Dart any advantages over Swift if I target only iOS?
1 vote and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Hero (Flutter Widget of the Week)
https://www.youtube.com/attribution_link?a=YhY1nupVBos&u=%2Fwatch%3Fv%3DBe9UH1kXFDw%26feature%3Dshare
December 11, 2018 at 07:48PM by Pixelreddit
https://ift.tt/2zTBqcZ
Hero (Flutter Widget of the Week)
https://www.youtube.com/attribution_link?a=YhY1nupVBos&u=%2Fwatch%3Fv%3DBe9UH1kXFDw%26feature%3Dshare
December 11, 2018 at 07:48PM by Pixelreddit
https://ift.tt/2zTBqcZ
YouTube
Hero (Flutter Widget of the Week)
Hero transitions are a common UI pattern. They let the user know that they changed screens, while keeping the focus of the interaction front and center. Flut...
New post on /r/flutterdev subreddit:
A month of Flutter: rendering a ListView with StreamBuilder
https://ift.tt/2EonDPB
December 11, 2018 at 10:12PM by abrahamwilliams
https://ift.tt/2EeBDdJ
A month of Flutter: rendering a ListView with StreamBuilder
https://ift.tt/2EonDPB
December 11, 2018 at 10:12PM by abrahamwilliams
https://ift.tt/2EeBDdJ
Bendyworks: Ruby on Rails, JavaScript, and UI/UX Design Consulting
A month of Flutter: rendering a ListView with StreamBuilder - Bendyworks
We design and build software that stands the test of time, specializing in Ruby on Rails, JavaScript, Clojure, and Ionic.
New post on /r/flutterdev subreddit:
Flutter - Google Maps - Geolocation and markers with firestore
https://www.youtube.com/watch?v=Hg8CT3ysFjY&feature=youtu.be
December 11, 2018 at 10:10PM by rajayogan27
https://ift.tt/2C539sB
Flutter - Google Maps - Geolocation and markers with firestore
https://www.youtube.com/watch?v=Hg8CT3ysFjY&feature=youtu.be
December 11, 2018 at 10:10PM by rajayogan27
https://ift.tt/2C539sB
YouTube
Flutter - Google Maps - Geolocation, Markers with firestore
Support me - https://paypal.me/RajaYogan Buy my course - https://www.udemy.com/learn-flutter-from-scratch/?couponCode=SPECOFF Follow me on twitter - https://...
New post on /r/flutterdev subreddit:
The First Biggest App in Flutter..
Cool.. The best way to earn money easilyhttps://www.instagram.com/p/BrPoN74F4Ko/?utm\_source=ig\_web\_copy\_link
December 11, 2018 at 11:10PM by luxurynclassic
https://ift.tt/2SFBbcj
The First Biggest App in Flutter..
Cool.. The best way to earn money easilyhttps://www.instagram.com/p/BrPoN74F4Ko/?utm\_source=ig\_web\_copy\_link
December 11, 2018 at 11:10PM by luxurynclassic
https://ift.tt/2SFBbcj
Instagram
Luxury & Classic
Luxury&Classic Coming soon on App & Play stores #flutter #instagood #photooftheday #fashion #beautiful #happy #cute #tbt #like4like #followme #picoftheday #followforfollowback #selfie #summer #art #instadaily #friends #repost #nature #luxurycars #fun #style…
New post on /r/flutterdev subreddit:
Splitting widgets to methods is a performance antipattern
https://ift.tt/2Lg0Zti
December 11, 2018 at 11:35PM by roughike
https://ift.tt/2Es2WSR
Splitting widgets to methods is a performance antipattern
https://ift.tt/2Lg0Zti
December 11, 2018 at 11:35PM by roughike
https://ift.tt/2Es2WSR
iirokrankka.com
Splitting widgets to methods is a performance antipattern
Almost 6 months ago, I advised you to split long build methods into multiple smaller methods. And it turns out I was wrong. You should be splitting your widgets into smaller widgets instead - and there’s a good reason why.
New post on /r/flutterdev subreddit:
Flutter Best Practices - Building a Generic BLoC Provider - Advanced Flutter Project Part 3
https://m.youtube.com/watch?feature=youtu.be&v=2N75m6Pq9eY
December 12, 2018 at 02:04AM by Purple_Pizzazz
https://ift.tt/2UDWMUj
Flutter Best Practices - Building a Generic BLoC Provider - Advanced Flutter Project Part 3
https://m.youtube.com/watch?feature=youtu.be&v=2N75m6Pq9eY
December 12, 2018 at 02:04AM by Purple_Pizzazz
https://ift.tt/2UDWMUj
YouTube
Flutter Best Practices - Building a Generic BLoC Provider - Advanced Flutter Project Part Three
In this Video, we continue building the Utopian Rocks Application by implementing a Generic BLoC Provider. Github Repository: https://github.com/tensor-progr...
New post on /r/flutterdev subreddit:
Flutter UI - Flights Listing Home Screen Part 1
https://youtu.be/GeMJz3EcBgs
December 12, 2018 at 02:51AM by prateeksharma1712
https://ift.tt/2EoG9HB
Flutter UI - Flights Listing Home Screen Part 1
https://youtu.be/GeMJz3EcBgs
December 12, 2018 at 02:51AM by prateeksharma1712
https://ift.tt/2EoG9HB
YouTube
Flight List UI Example In Flutter | Home Screen | Part 1
Home Screen Part 1
Mocking a design from dribbble in Flutter
Design: Flight Tickets Deal Tracker App | Day 340/365 - Project365 - https://dribbble.com/shots/5662956-Flight-Tickets-Deal-Tracker-App-Day-340-365-Project365
Github URL - https://github.com/…
Mocking a design from dribbble in Flutter
Design: Flight Tickets Deal Tracker App | Day 340/365 - Project365 - https://dribbble.com/shots/5662956-Flight-Tickets-Deal-Tracker-App-Day-340-365-Project365
Github URL - https://github.com/…
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
MLkit in flutter?
https://ift.tt/2Eh90Nc
December 12, 2018 at 03:54AM by chinmay_shah
https://ift.tt/2Pxj5Y4
reddit
r/androiddev - Flutter vs Native Android dev
0 votes and 10 comments so far on Reddit
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
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
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
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
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
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
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
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
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
reddit
r/FlutterDev - question about cost of widgets
1 vote and 2 comments so far on Reddit
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
Flutter: reducing widgets boilerplate
https://ift.tt/2Gf8ula
December 12, 2018 at 08:49AM by remirousselet
https://ift.tt/2rzI9nC