New post on /r/flutterdev subreddit:
How would you make a top tab bar that only shows on one particular page?
I have an appBar with a bottomNavigationBar that takes you to a particular page. On one of the pages, I want to show a top TabBar, which can be used to swipe through different pages.So the basic structure of the app is like this:ScaffoldAppBarBody(the widget here changes depending on what's selected on the BottomNavigationBar)BottomNavigationBarSo I have one widget that is supposed to show when one of the buttons on the BottomNavigationBar is pressed.This is what I tried for that widget:
January 13, 2019 at 11:08AM by themindstorm
http://bit.ly/2H6YF9q
How would you make a top tab bar that only shows on one particular page?
I have an appBar with a bottomNavigationBar that takes you to a particular page. On one of the pages, I want to show a top TabBar, which can be used to swipe through different pages.So the basic structure of the app is like this:ScaffoldAppBarBody(the widget here changes depending on what's selected on the BottomNavigationBar)BottomNavigationBarSo I have one widget that is supposed to show when one of the buttons on the BottomNavigationBar is pressed.This is what I tried for that widget:
Widget build(BuildContext context) { return ListView( children: <Widget>[ DefaultTabController( length: 3, child: TabBar( tabs: <Widget>[ Tab(icon: Icon(Icons.directions_car)), Tab(icon: Icon(Icons.directions_transit)), Tab(icon: Icon(Icons.directions_bike)), ], ), ), Text("Another child under the tab bar") ], ); }However, the background of the TabBar is white, when my app's primary color is blue. Is this the best way to do this?Thanks.
January 13, 2019 at 11:08AM by themindstorm
http://bit.ly/2H6YF9q
reddit
r/FlutterDev - How would you make a top tab bar that only shows on one particular page?
0 votes and 1 comment so far on Reddit
New post on /r/flutterdev subreddit:
23. Flutter e-commerce app backend: Firebase set up
https://www.youtube.com/attribution_link?a=EBpMJD6RzKQ&u=%2Fwatch%3Fv%3DIlgRLf-MGDM%26feature%3Dshare
January 13, 2019 at 11:52AM by kibatheseven
http://bit.ly/2M5N8pT
23. Flutter e-commerce app backend: Firebase set up
https://www.youtube.com/attribution_link?a=EBpMJD6RzKQ&u=%2Fwatch%3Fv%3DIlgRLf-MGDM%26feature%3Dshare
January 13, 2019 at 11:52AM by kibatheseven
http://bit.ly/2M5N8pT
YouTube
23. Flutter e-commerce app backend: Firebase set up
source code: https://github.com/Santos-Enoque/complete_flutter_ecommerce
============ CONTACT ===========================================
EMAIL: santosenoque.ss@hotmail.com
SKYPE: santos enoque
============ CONTACT ===========================================
EMAIL: santosenoque.ss@hotmail.com
SKYPE: santos enoque
New post on /r/flutterdev subreddit:
I'm a React Native dev and would like to make a comprehensive comparison between Flutter and RN
tldr;I will try every feature that's needed for a production-ready app and need your opinions/support as well.I've been developing mobile apps with React Native for 2+ years. I'm pretty confident I tried almost all platform capabilities including native modules (i.e. native bridge).I've read a lot of articles recently, Upon my research I can listPros:+ Performance is better than RN – startup time is faster, button tap is more responsive+ UI output is more identical across platforms+ Has a good CLI supportCons:- New language for almost all developers – no web dev, ios or android dev uses Dart by default- CPU usage is (generally) higher – Skia has its own implementation which lacks of platform-specific native optimizations- Has a small community which means limited extensions and support – I think this won't be an issue in near futureBesides the pros and cons above, I would like to try flutter and share my experimentations so I made a list of features that you will need for a production-ready app. I list them under 3 headings:UI: Just visual qualityNative: Native performance and accessing native featuresBusiness Logic: Managing global and local states, CRUD operations as well
UIBuilding Pixel Perfect UI (Render of shadows, border-radius, color representation such as rgb, hsla, hex)Flex-box modelSafe Area ViewLine-height iOS vs AndroidImage styling (resizing and positioning)Text Input capacity (e.g. keyboard types, listening events)NativeCustom native module supportPush NotificationsIn-app PurchaseCapacity of Webview (Possible to listen every url and content)Websocket (socket.io) integrationApp size iOS vs androidPlaying Video/Audio filesAnimationsMapsBusiness LogicJSON encoding/decodingSeparation of stylingComplex navigations (nested tab and stacked screens)Handling HTTP requestsState management (BLoC vs Redux)Anything you want to add or think it's redundant? I'd like to hear your opinions as well.Also, I'm planning to write a post so I will definitely need your support on learning "flutter-way". Please share your contact info if you want to contribute.
ThanksPS: I've already seen this page
January 13, 2019 at 11:46AM by meanyack
http://bit.ly/2RN0i02
I'm a React Native dev and would like to make a comprehensive comparison between Flutter and RN
tldr;I will try every feature that's needed for a production-ready app and need your opinions/support as well.I've been developing mobile apps with React Native for 2+ years. I'm pretty confident I tried almost all platform capabilities including native modules (i.e. native bridge).I've read a lot of articles recently, Upon my research I can listPros:+ Performance is better than RN – startup time is faster, button tap is more responsive+ UI output is more identical across platforms+ Has a good CLI supportCons:- New language for almost all developers – no web dev, ios or android dev uses Dart by default- CPU usage is (generally) higher – Skia has its own implementation which lacks of platform-specific native optimizations- Has a small community which means limited extensions and support – I think this won't be an issue in near futureBesides the pros and cons above, I would like to try flutter and share my experimentations so I made a list of features that you will need for a production-ready app. I list them under 3 headings:UI: Just visual qualityNative: Native performance and accessing native featuresBusiness Logic: Managing global and local states, CRUD operations as well
UIBuilding Pixel Perfect UI (Render of shadows, border-radius, color representation such as rgb, hsla, hex)Flex-box modelSafe Area ViewLine-height iOS vs AndroidImage styling (resizing and positioning)Text Input capacity (e.g. keyboard types, listening events)NativeCustom native module supportPush NotificationsIn-app PurchaseCapacity of Webview (Possible to listen every url and content)Websocket (socket.io) integrationApp size iOS vs androidPlaying Video/Audio filesAnimationsMapsBusiness LogicJSON encoding/decodingSeparation of stylingComplex navigations (nested tab and stacked screens)Handling HTTP requestsState management (BLoC vs Redux)Anything you want to add or think it's redundant? I'd like to hear your opinions as well.Also, I'm planning to write a post so I will definitely need your support on learning "flutter-way". Please share your contact info if you want to contribute.
ThanksPS: I've already seen this page
January 13, 2019 at 11:46AM by meanyack
http://bit.ly/2RN0i02
flutter.io
Flutter for React Native developers
Learn how to apply React Native developer knowledge when building Flutter apps.
New post on /r/flutterdev subreddit:
Flutter Weekly Widgets S02E02 | 3D ListView & More
https://youtu.be/oE4Cl_p5LQ0
January 13, 2019 at 12:50PM by imthepk
http://bit.ly/2RpaUmp
Flutter Weekly Widgets S02E02 | 3D ListView & More
https://youtu.be/oE4Cl_p5LQ0
January 13, 2019 at 12:50PM by imthepk
http://bit.ly/2RpaUmp
YouTube
Flutter Weekly Widgets S02E02 | 3D ListView
In this video, I will explain how to make awesome Listview with 3D effect. #Flutter #FlutterWeeklyWidgets #3DView Please give stars for this project on git a...
New post on /r/flutterdev subreddit:
Any good guides for cross platform ui development?
I just started using flutter, and so far I love it. However, I had a question. How can I make a single UI that looks "natural" in both iOS and Android? I.e., I wouldn't want to make a standard material app and put it on iOS, but I wouldn't want to make two separate UIs. Any help/links to guides would be appreciated. Thanks in advance!
January 13, 2019 at 03:31PM by ScreamingTaco45
http://bit.ly/2Rog42j
Any good guides for cross platform ui development?
I just started using flutter, and so far I love it. However, I had a question. How can I make a single UI that looks "natural" in both iOS and Android? I.e., I wouldn't want to make a standard material app and put it on iOS, but I wouldn't want to make two separate UIs. Any help/links to guides would be appreciated. Thanks in advance!
January 13, 2019 at 03:31PM by ScreamingTaco45
http://bit.ly/2Rog42j
reddit
r/FlutterDev - Any good guides for cross platform ui development?
1 vote and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
FlutterForce — Week 9
http://bit.ly/2Ftkv4A
January 13, 2019 at 05:34PM by flutterist
http://bit.ly/2FpHwGw
FlutterForce — Week 9
http://bit.ly/2Ftkv4A
January 13, 2019 at 05:34PM by flutterist
http://bit.ly/2FpHwGw
Medium
FlutterForce — #Week 9
Weekly Flutter Resources
New post on /r/flutterdev subreddit:
Payment app
I would like to develop an app to take electronic payments. I would like to do it using flutter. Can I get some advice as to what I should do research on and how difficult would it be?
January 13, 2019 at 06:54PM by afdal_khan
http://bit.ly/2ss5KHi
Payment app
I would like to develop an app to take electronic payments. I would like to do it using flutter. Can I get some advice as to what I should do research on and how difficult would it be?
January 13, 2019 at 06:54PM by afdal_khan
http://bit.ly/2ss5KHi
reddit
r/FlutterDev - Payment app
1 vote and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
What would be a good reference app teaching best practices?
Is it a standard practice in Dart to keep several classes as part of the same file? I keep seeing many Flutter apps, where everything seems to have been crunched in a single file. What would be a good reference application to have a look at?
January 13, 2019 at 06:19PM by preslavrachev
http://bit.ly/2ChN69Q
What would be a good reference app teaching best practices?
Is it a standard practice in Dart to keep several classes as part of the same file? I keep seeing many Flutter apps, where everything seems to have been crunched in a single file. What would be a good reference application to have a look at?
January 13, 2019 at 06:19PM by preslavrachev
http://bit.ly/2ChN69Q
reddit
r/FlutterDev - What would be a good reference app teaching best practices?
4 votes and 1 comment so far on Reddit
New post on Flutter Dev Google group:
What is the best way to take User Input for Date and Time?
I have recently started flutter and I am finding it really hard to create date-time input box for user. Below is what I am doing currently;- static var _year = ["2019", "2020", "2021", "2022", "2023", "2024", "2025"]; static var _month = ["01", "02", "03", "04", "05", "06", "07", "08", "09",
January 13, 2019 at 09:09PM by Rocky Sharma
http://bit.ly/2RuK10J
What is the best way to take User Input for Date and Time?
I have recently started flutter and I am finding it really hard to create date-time input box for user. Below is what I am doing currently;- static var _year = ["2019", "2020", "2021", "2022", "2023", "2024", "2025"]; static var _month = ["01", "02", "03", "04", "05", "06", "07", "08", "09",
January 13, 2019 at 09:09PM by Rocky Sharma
http://bit.ly/2RuK10J
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:
[Tutorial] Asynchronous Flutter chat client with Go chat server which are powered by gRPC (simple and streaming)
http://bit.ly/2ChFIeH
January 13, 2019 at 08:43PM by etca2z
http://bit.ly/2FsCl8C
[Tutorial] Asynchronous Flutter chat client with Go chat server which are powered by gRPC (simple and streaming)
http://bit.ly/2ChFIeH
January 13, 2019 at 08:43PM by etca2z
http://bit.ly/2FsCl8C
Medium
[Tutorial] Asynchronous Flutter chat client with Go chat server which are powered by gRPC (simple and streaming)
I opened Flutter for myself few weeks ago. It dramatically changes mobile app development. I would call it now — development with pleasure…
New post on /r/flutterdev subreddit:
Animations In Flutter
http://bit.ly/2FsKmK2
January 13, 2019 at 09:24PM by Elixane
http://bit.ly/2Fo2m8Z
Animations In Flutter
http://bit.ly/2FsKmK2
January 13, 2019 at 09:24PM by Elixane
http://bit.ly/2Fo2m8Z
Medium
Animations In Flutter
Animations are one of the essential things that enhances the user experience, makes your application more interactive and makes your users…
New post on /r/flutterdev subreddit:
[Help] SpriteWidget Tutorials/walkthroughs?
Hi all,I'm keen to jump on the Flutter bandwagon and have followed a few tutorials to get the basics down. While looking around, I discovered SpriteWidget, which could be used as a game engine.https://pub.dartlang.org/packages/spritewidget#-example-tab-I was attempting to create my own little game, using the space blast example here:Https://github.com/spritewidget/spaceblastBut I'm really struggling to get anything going. Ive googled, but there seems to be very little info out there on SpriteWidget beyond these few examples I've found. I was wondering if anyone knew of any resources that really walks you through what parts do, how best to layout code. I've tried to follow step by step how the space blast game works but am finding it very difficult. Any assistance would be greatly received. I wish I could write up some blog tutorials for this as I think it's really needed but have utterly failed.
January 13, 2019 at 10:49PM by Money_on_the_table
http://bit.ly/2H6tpHA
[Help] SpriteWidget Tutorials/walkthroughs?
Hi all,I'm keen to jump on the Flutter bandwagon and have followed a few tutorials to get the basics down. While looking around, I discovered SpriteWidget, which could be used as a game engine.https://pub.dartlang.org/packages/spritewidget#-example-tab-I was attempting to create my own little game, using the space blast example here:Https://github.com/spritewidget/spaceblastBut I'm really struggling to get anything going. Ive googled, but there seems to be very little info out there on SpriteWidget beyond these few examples I've found. I was wondering if anyone knew of any resources that really walks you through what parts do, how best to layout code. I've tried to follow step by step how the space blast game works but am finding it very difficult. Any assistance would be greatly received. I wish I could write up some blog tutorials for this as I think it's really needed but have utterly failed.
January 13, 2019 at 10:49PM by Money_on_the_table
http://bit.ly/2H6tpHA
Dart packages
spritewidget | Flutter Package
SpriteWidget is an open source toolkit for building complex, high performance animations and 2D games with Flutter.
New post on Flutter Dev Google group:
SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
Hi there! Do you know how to fix the error E/SpannableStringBuilder( 5445): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length? It happens when I tap on a textfield and the keyboard fails to load. I've stripped down my widget tree and played with it but I'm still getting this error on all
January 13, 2019 at 11:57PM by Marcos Nobre
http://bit.ly/2D94JKB
SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
Hi there! Do you know how to fix the error E/SpannableStringBuilder( 5445): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length? It happens when I tap on a textfield and the keyboard fails to load. I've stripped down my widget tree and played with it but I'm still getting this error on all
January 13, 2019 at 11:57PM by Marcos Nobre
http://bit.ly/2D94JKB
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:
flutter_launcher_icons | Dart Package
http://bit.ly/2FxmvIT
January 14, 2019 at 03:12AM by PedroMassango
http://bit.ly/2FolFPD
flutter_launcher_icons | Dart Package
http://bit.ly/2FxmvIT
January 14, 2019 at 03:12AM by PedroMassango
http://bit.ly/2FolFPD
Dart packages
flutter_launcher_icons | Dart Package
A package which simplifies the task of updating your Flutter app's launcher icon.
New post on /r/flutterdev subreddit:
I created a repo for algorithms and data structures using dart for flutter. Just converted it from js repo. It will help you have a good interview.
http://bit.ly/2Fzw4Hg
January 14, 2019 at 02:56AM by thuutien2
http://bit.ly/2FpM93a
I created a repo for algorithms and data structures using dart for flutter. Just converted it from js repo. It will help you have a good interview.
http://bit.ly/2Fzw4Hg
January 14, 2019 at 02:56AM by thuutien2
http://bit.ly/2FpM93a
GitHub
thuutien/algorithm
Algorithm and Data Structure with Dart for Flutter. - thuutien/algorithm
New post on /r/flutterdev subreddit:
Flutter - FoldingCell (Tutorial)
https://www.youtube.com/watch?v=070UHio_RXE
January 14, 2019 at 05:32AM by JohannesMilke
http://bit.ly/2FxJxzl
Flutter - FoldingCell (Tutorial)
https://www.youtube.com/watch?v=070UHio_RXE
January 14, 2019 at 05:32AM by JohannesMilke
http://bit.ly/2FxJxzl
YouTube
Flutter - FoldingCell
Flutter is a framework by Google for building applications on iOS and Android. Source code: https://github.com/JohannesMilke/folding_cell_example Twitter: ht...
New post on Flutter Dev Google group:
App Launch Speed: Swift vs Kotlin vs Flutter
Hi, I'm investigating Flutter for native mobile app development. I created a trivial Flutter app. Launching the Flutter app on mobile device simulators was quick. Launching the Flutter app on physical devices felt laggy compared to much more complex apps I've written in Swift and Kotlin. This
January 14, 2019 at 06:17AM by Peter Michaux
http://bit.ly/2VTIKhU
App Launch Speed: Swift vs Kotlin vs Flutter
Hi, I'm investigating Flutter for native mobile app development. I created a trivial Flutter app. Launching the Flutter app on mobile device simulators was quick. Launching the Flutter app on physical devices felt laggy compared to much more complex apps I've written in Swift and Kotlin. This
January 14, 2019 at 06:17AM by Peter Michaux
http://bit.ly/2VTIKhU
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:
How I created Piano Tiles clone app in about 3 hours using Flutter.
http://bit.ly/2FtxCnl
January 14, 2019 at 07:58AM by Marcinus
http://bit.ly/2D91rqw
How I created Piano Tiles clone app in about 3 hours using Flutter.
http://bit.ly/2FtxCnl
January 14, 2019 at 07:58AM by Marcinus
http://bit.ly/2D91rqw
Fidev
UI Challenge: Piano Tiles clone in Flutter - Fidev
Hi guys! This post is pretty straight-forward. I wanted to create a basic clone of Piano Tiles 2 - a mobile game where you play on simplified piano :) Now I want to share with you how to do that in very few steps using Flutter. Let's get started!
New post on Flutter Dev Google group:
CupertinoPicker doesn't refresh, bug 22999
Hello :) I'm having this bug http://bit.ly/2RoxxY8 and it prevent us to moving forward from beta test to production because of this. I have a CupertinoPicker that is empty and I populate it each time I found a Bluetooth device around. User have to select the one he
January 14, 2019 at 10:01AM by Jimmy Aumard
http://bit.ly/2Cip7Ya
CupertinoPicker doesn't refresh, bug 22999
Hello :) I'm having this bug http://bit.ly/2RoxxY8 and it prevent us to moving forward from beta test to production because of this. I have a CupertinoPicker that is empty and I populate it each time I found a Bluetooth device around. User have to select the one he
January 14, 2019 at 10:01AM by Jimmy Aumard
http://bit.ly/2Cip7Ya
GitHub
CupertinoPicker refresh data not working · Issue #22999 · flutter/flutter
CupertinoPicker widget is not refreshed when you change his childCount, if you put initial data no problem, but all data added after first build is not visible. To reproduce: import 'package:fl...
New post on /r/flutterdev subreddit:
Intro to Flutter for absolute beginners
http://bit.ly/2Fr6fdA
January 14, 2019 at 09:21AM by chakrihacker
http://bit.ly/2FwQdxH
Intro to Flutter for absolute beginners
http://bit.ly/2Fr6fdA
January 14, 2019 at 09:21AM by chakrihacker
http://bit.ly/2FwQdxH
Fyndx
Introduction to Flutter and Dart
First time looking at Flutter and Dart can be daunting. I will go through each and every line of main.dart when you scaffold your first…