New post on /r/flutterdev subreddit:
Common Workflow in Flutter
https://ift.tt/2U0AUGb
March 27, 2019 at 11:47AM by NearbyCover7
https://ift.tt/2FuPjAq
Common Workflow in Flutter
https://ift.tt/2U0AUGb
March 27, 2019 at 11:47AM by NearbyCover7
https://ift.tt/2FuPjAq
Medium
Common Workflow in Flutter
A Developer Checklist
New post on Flutter Dev Google group:
SLiver adapter error , flutter
I encountered an error displaying indexof(child) > index for sliver adapter but i didnt use any slivers Heres my code: class _profilePageState extends State { FirebaseUser user; String username; @override void initState() async { // TODO: implement initState super.init
March 27, 2019 at 05:04PM by Krishna Gandrath
https://ift.tt/2CG5udn
SLiver adapter error , flutter
I encountered an error displaying indexof(child) > index for sliver adapter but i didnt use any slivers Heres my code: class _profilePageState extends State { FirebaseUser user; String username; @override void initState() async { // TODO: implement initState super.init
March 27, 2019 at 05:04PM by Krishna Gandrath
https://ift.tt/2CG5udn
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:
Join us for HumpdayQandA!
https://twitter.com/FlutterComm/status/1110946172137553920
March 27, 2019 at 05:49PM by Nash0x7E2
https://ift.tt/2TYOh9W
Join us for HumpdayQandA!
https://twitter.com/FlutterComm/status/1110946172137553920
March 27, 2019 at 05:49PM by Nash0x7E2
https://ift.tt/2TYOh9W
Twitter
Flutter Community
Join us on zoom now, Ray Rischpater from the @FlutterDev team will be here in 10 minutes! @nlycskn #flutter #FlutterCommunity @r_FlutterDev @Flutter_Flakes @FlutterWk https://t.co/uEXpy8jwch
New post on Flutter Dev Google group:
LA SCHIFOSA PUTTANA FRANCESCA VERDINI SE LA FA CON L'ASSASSINO NAZISTA, NDRANGHETISTA MATTEO SALVINI
LA SCHIFOSA PUTTANA FRANCESCA VERDINI SE LA FA CON L'ASSASSINO NAZISTA E NDRANGHETISTA MATTEO SALVINI! CHE HA 20 ANNI PIU' DI LEI O QUASI. E' FIGLIA DEL MASSONE PEZZO DI MERDA DENIS VERDINI, UN FASCISTA SCHIFOSO, CHE HA PIU' CONDANNE AL CARCERE........ LUI CHE AL CAPONE E RENATO VALLANZASCA
March 27, 2019 at 06:50PM by SIMONA-PREMOLI EXLESBIANAMANTE-DE MARINA-BERLUSCONI
https://ift.tt/2OsyrOI
LA SCHIFOSA PUTTANA FRANCESCA VERDINI SE LA FA CON L'ASSASSINO NAZISTA, NDRANGHETISTA MATTEO SALVINI
LA SCHIFOSA PUTTANA FRANCESCA VERDINI SE LA FA CON L'ASSASSINO NAZISTA E NDRANGHETISTA MATTEO SALVINI! CHE HA 20 ANNI PIU' DI LEI O QUASI. E' FIGLIA DEL MASSONE PEZZO DI MERDA DENIS VERDINI, UN FASCISTA SCHIFOSO, CHE HA PIU' CONDANNE AL CARCERE........ LUI CHE AL CAPONE E RENATO VALLANZASCA
March 27, 2019 at 06:50PM by SIMONA-PREMOLI EXLESBIANAMANTE-DE MARINA-BERLUSCONI
https://ift.tt/2OsyrOI
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:
Easy way to test Flutter app?
Hi Everyone!I am develop Flutter app with Firebase backend.I have auth, notification, and Firestore. I am use
March 27, 2019 at 07:10PM by Flutter_Dev
https://ift.tt/2HWk4Rs
Easy way to test Flutter app?
Hi Everyone!I am develop Flutter app with Firebase backend.I have auth, notification, and Firestore. I am use
scoped_model
for manage state. I want add test to app for check app is work on many device.I have no experience add test to app.What is most easy way to test? I have read https://flutter.dev/docs/testing but still look complicate.Firebase Robo Test look very easy but it no work for Flutter because:Robo tests use the Android API to perform actions on Android UI widgets directly. That helps the tests explore your UI automatically, but also means that they need to be able to extract an Android UI hierarchy for a screen in order to run tests on it.This correct?What is most easy for beginner?Thanks!March 27, 2019 at 07:10PM by Flutter_Dev
https://ift.tt/2HWk4Rs
docs.flutter.dev
Testing & debugging
Content covering testing and debugging Flutter apps.
New post on Flutter Dev Google group:
Detect if android phone is plugged in ...
Looking for a Flutter plug-in to detect if android phone is physically plugged in ...
March 27, 2019 at 10:17PM by Jeff Morse
https://ift.tt/2CBjNjx
Detect if android phone is plugged in ...
Looking for a Flutter plug-in to detect if android phone is physically plugged in ...
March 27, 2019 at 10:17PM by Jeff Morse
https://ift.tt/2CBjNjx
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:
Detect is a phone is tilted or flat on table
Looking for a Flutter plug-in to detect is a phone is tilted or flat on table
March 27, 2019 at 10:18PM by Jeff Morse
https://ift.tt/2V132oT
Detect is a phone is tilted or flat on table
Looking for a Flutter plug-in to detect is a phone is tilted or flat on table
March 27, 2019 at 10:18PM by Jeff Morse
https://ift.tt/2V132oT
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:
Why is Flutter so overly verbose? Why is working with TextFields so bad?
To do anything with a textfield, you need to a TextFieldController defined in your class, then you have to assign to your textfield, then you have to reference the controller where you would need to manipulate or get the value of your text field. Just so many different things you need to do that completely interrupts your flow. And you need to do all this for EVERY text field you want to manipulate (which is pretty much all of them, why else have a text field). Even in hated Android, it was a lot more natural to manipulate text fields.And now, after receiving an error response from my http call, I wanted to focus on the offending field, and when I wanted to call controller.focus(), it wasn't there. Turns out I have to do the EXACT SAME THING for focusNodes as well. Create a focusNode variable in my class, assign to the text field, and then call when required. Are you kidding me? I know Flutter is generally great (and I'm a big fan and currently switching a huge app over to Flutter) but it's things like this that are frustrating, unnatural and will drive away people. There's no natural flow to coding (even in the Flutter videos and the boring show, the actual flutter developers have to consistently look up classes and how things are called because it's just so unnatural. )/rant
March 27, 2019 at 10:14PM by ac_version_01
https://ift.tt/2HK3Zzg
Why is Flutter so overly verbose? Why is working with TextFields so bad?
To do anything with a textfield, you need to a TextFieldController defined in your class, then you have to assign to your textfield, then you have to reference the controller where you would need to manipulate or get the value of your text field. Just so many different things you need to do that completely interrupts your flow. And you need to do all this for EVERY text field you want to manipulate (which is pretty much all of them, why else have a text field). Even in hated Android, it was a lot more natural to manipulate text fields.And now, after receiving an error response from my http call, I wanted to focus on the offending field, and when I wanted to call controller.focus(), it wasn't there. Turns out I have to do the EXACT SAME THING for focusNodes as well. Create a focusNode variable in my class, assign to the text field, and then call when required. Are you kidding me? I know Flutter is generally great (and I'm a big fan and currently switching a huge app over to Flutter) but it's things like this that are frustrating, unnatural and will drive away people. There's no natural flow to coding (even in the Flutter videos and the boring show, the actual flutter developers have to consistently look up classes and how things are called because it's just so unnatural. )/rant
March 27, 2019 at 10:14PM by ac_version_01
https://ift.tt/2HK3Zzg
reddit
r/FlutterDev - Why is Flutter so overly verbose? Why is working with TextFields so bad?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Custom painting in Flutter - Flutter In Focus
https://www.youtube.com/attribution_link?a=24lvH0ihIKs&u=%2Fwatch%3Fv%3DvvI_NUXK00s%26feature%3Dshare
March 27, 2019 at 10:11PM by Pixelreddit
https://ift.tt/2WvEeG9
Custom painting in Flutter - Flutter In Focus
https://www.youtube.com/attribution_link?a=24lvH0ihIKs&u=%2Fwatch%3Fv%3DvvI_NUXK00s%26feature%3Dshare
March 27, 2019 at 10:11PM by Pixelreddit
https://ift.tt/2WvEeG9
YouTube
Custom painting in Flutter - Flutter In Focus
Are you looking to create an advanced UI using Flutter’s CustomPaint and CustomPainter widgets? Well, you're in luck! In this episode of Flutter in Focus, Ma...
New post on /r/flutterdev subreddit:
I've been working on an app using Bloc and Cloud FIrestore the past few weeks and blogging about it. I'm mostly figuring it out as I go. This is me figuring out how to arrange the Bloc to ensure the app is reactive to database changes across instances.
https://ift.tt/2HJRVhh
March 27, 2019 at 09:44PM by definitely_robots
https://ift.tt/2FyGXI1
I've been working on an app using Bloc and Cloud FIrestore the past few weeks and blogging about it. I'm mostly figuring it out as I go. This is me figuring out how to arrange the Bloc to ensure the app is reactive to database changes across instances.
https://ift.tt/2HJRVhh
March 27, 2019 at 09:44PM by definitely_robots
https://ift.tt/2FyGXI1
Streams from the Cloud
Cross-Instance Reactivity with Streams and Futures in Firestore
Since this app is designed for a group of people to work together in real-time, it is important that when someone enters a bill or payment record into the database, that record is immediately visib…
New post on /r/flutterdev subreddit:
Dash - Bloc provider made easy
https://ift.tt/2YnuKOO
March 27, 2019 at 09:30PM by MainaWycliffe
https://ift.tt/2TAfiv7
Dash - Bloc provider made easy
https://ift.tt/2YnuKOO
March 27, 2019 at 09:30PM by MainaWycliffe
https://ift.tt/2TAfiv7
Medium
Announcing — Dash
Hi folks, in this article I will explain why Dash library was created and the problem that it try to solve. This also was a way to learn…
New post on /r/flutterdev subreddit:
Flutter Deployment Workflow Done Right
https://ift.tt/2Yr9aJv
March 27, 2019 at 09:08PM by Purple_Pizzazz
https://ift.tt/2TGuPts
Flutter Deployment Workflow Done Right
https://ift.tt/2Yr9aJv
March 27, 2019 at 09:08PM by Purple_Pizzazz
https://ift.tt/2TGuPts
Medium
Flutter Android Deployment Workflow Done Right
Streamline and automate your distribution and app deployment process
New post on /r/flutterdev subreddit:
Docker image and scripts for running Flutter tests in a container
https://ift.tt/2FGid1H
March 27, 2019 at 10:25PM by MisterJimson
https://ift.tt/2OCcc9j
Docker image and scripts for running Flutter tests in a container
https://ift.tt/2FGid1H
March 27, 2019 at 10:25PM by MisterJimson
https://ift.tt/2OCcc9j
GitHub
MisterJimson/flutter-docker-deps
A docker image with the dependancies required to install and run Flutter tests - MisterJimson/flutter-docker-deps
New tweet from FlutterDev:
Paint a masterpiece with the CustomPaint widget 👩‍🎨🖼!
In this #FlutterinFocus, @mjohnsullivan covers the anatomy 💀 of the CustomPaint widget, adds a paint function to highlight faces on an image, and resizes the image canvas.
Watch here → https://t.co/zSYGIQNqdU pic.twitter.com/P35wUAke76— Flutter (@FlutterDev) March 27, 2019
March 28, 2019 at 12:31AM
http://twitter.com/FlutterDev/status/1111048008379043847
Paint a masterpiece with the CustomPaint widget 👩‍🎨🖼!
In this #FlutterinFocus, @mjohnsullivan covers the anatomy 💀 of the CustomPaint widget, adds a paint function to highlight faces on an image, and resizes the image canvas.
Watch here → https://t.co/zSYGIQNqdU pic.twitter.com/P35wUAke76— Flutter (@FlutterDev) March 27, 2019
March 28, 2019 at 12:31AM
http://twitter.com/FlutterDev/status/1111048008379043847
Twitter
#flutterinfocus hashtag on Twitter
23m ago @FlutterDev tweeted: "🌟Another #FlutterinFocus episode! 🌟
.." - read what others are saying and join the conversation.
.." - read what others are saying and join the conversation.
New post on /r/flutterdev subreddit:
Clean + BLoC Flutter
So, I am currently working on getting a proper folder structure (hopefully as close to Clean Architecture by Uncle Bob as it can) that makes sense in a Flutter project. I'm using an approach that attempts to work with a global app BLoC containing many other sub-BLoCs according to need. Then, with
March 28, 2019 at 12:42AM by codingalecr
https://ift.tt/2TAusRa
Clean + BLoC Flutter
So, I am currently working on getting a proper folder structure (hopefully as close to Clean Architecture by Uncle Bob as it can) that makes sense in a Flutter project. I'm using an approach that attempts to work with a global app BLoC containing many other sub-BLoCs according to need. Then, with
screens.dart
I expose the different screens that there could be; this is mostly to use them in the routes.dart file so I don't have to do all the imports. A similar approach is taken with auth.dart. Overall, my proposed folder structure would look something like this:lib
-main.dart
-src
--app.dart
--theme.dart
--colors.dart
--routes.dart
--data
---datasources
---repositories
--domain
---models
---blocs
--presentation
---animations
---widgets
---screens
----screens.dart
----auth
-----auth.dart
-----login.dart
-----reset_password.dart
I welcome all the feedback since I'm quite new to Flutter (just spent the last 2 weeks figuring it all out and learning about BLoC and Redux patterns).March 28, 2019 at 12:42AM by codingalecr
https://ift.tt/2TAusRa
reddit
r/FlutterDev - Clean + BLoC Flutter
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Hummingbird release date?
Hi, I was just wondering if there is an approximative release date of Hummingbird. When the Flutter team showed it for the first time in December 2018, they said that it was still in an early stage and that it wouldn't be released soon. Will it get released in 2019?
March 28, 2019 at 03:32AM by kamilgeagea
https://ift.tt/2uuvVON
Hummingbird release date?
Hi, I was just wondering if there is an approximative release date of Hummingbird. When the Flutter team showed it for the first time in December 2018, they said that it was still in an early stage and that it wouldn't be released soon. Will it get released in 2019?
March 28, 2019 at 03:32AM by kamilgeagea
https://ift.tt/2uuvVON
reddit
r/FlutterDev - Hummingbird release date?
0 votes and 0 comments so far on Reddit
New post on Flutter Dev Google group:
"Could not launch engine with configuration"
I get this much of the time when I edit even the tiniest thing in my code: Launching lib/dice_button.dart on iPhone Xʀ in debug mode... Xcode build done. 11.8s [VERBOSE-2:engine.cc(176)] Could not prepare to run the isolate. [VERBOSE-2:engine.cc(123)]
March 28, 2019 at 04:47AM by Guyren Howe
https://ift.tt/2FHzYOh
"Could not launch engine with configuration"
I get this much of the time when I edit even the tiniest thing in my code: Launching lib/dice_button.dart on iPhone Xʀ in debug mode... Xcode build done. 11.8s [VERBOSE-2:engine.cc(176)] Could not prepare to run the isolate. [VERBOSE-2:engine.cc(123)]
March 28, 2019 at 04:47AM by Guyren Howe
https://ift.tt/2FHzYOh
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:
Bubble Bottom Bar with Floating Action Button released! v.1.1.0
https://ift.tt/2GWfxOC
March 28, 2019 at 06:00AM by westdabestdb
https://ift.tt/2CI351X
Bubble Bottom Bar with Floating Action Button released! v.1.1.0
https://ift.tt/2GWfxOC
March 28, 2019 at 06:00AM by westdabestdb
https://ift.tt/2CI351X
GitHub
westdabestdb/bubble_bottom_bar
Contribute to westdabestdb/bubble_bottom_bar development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Ideas for WebApp devs to understand Flutter
Hey all, I am heavily digging into Flutter right now and want to comment on what strikes my as different from classic front-end development.https://miguelrincon.github.io/2019-03-26-flutter-web-developers/Awesome community you all!!
March 28, 2019 at 05:54AM by migrinc
https://ift.tt/2V1Pw4m
Ideas for WebApp devs to understand Flutter
Hey all, I am heavily digging into Flutter right now and want to comment on what strikes my as different from classic front-end development.https://miguelrincon.github.io/2019-03-26-flutter-web-developers/Awesome community you all!!
March 28, 2019 at 05:54AM by migrinc
https://ift.tt/2V1Pw4m
miguelrincon.github.io
Flutter for Web Developers
Concepts for WebApp devs to understand Flutter
New post on /r/flutterdev subreddit:
Honest question - does Flutter remind you of spaghetti code (like jQuery)?
Sincere thoughts and questions here, I am not trying to attack Flutter.I have been watching a lot of Flutter videos lately and it looks amazing. However the coding process in every demonstration leaves me feeling... lost and disorganized. It comes across as hard to compartmentalise the code.Those who have been using Flutter for a while now - is this true? Or is it more the nature of quick demonstrations/tutorials that don't take time to organize the code?The seemingly endless cascading of code reminds me of spaghetti code with jQuery. Does it do the same for anybody else?
March 28, 2019 at 06:53AM by gryclmn
https://ift.tt/2TXZpng
Honest question - does Flutter remind you of spaghetti code (like jQuery)?
Sincere thoughts and questions here, I am not trying to attack Flutter.I have been watching a lot of Flutter videos lately and it looks amazing. However the coding process in every demonstration leaves me feeling... lost and disorganized. It comes across as hard to compartmentalise the code.Those who have been using Flutter for a while now - is this true? Or is it more the nature of quick demonstrations/tutorials that don't take time to organize the code?The seemingly endless cascading of code reminds me of spaghetti code with jQuery. Does it do the same for anybody else?
March 28, 2019 at 06:53AM by gryclmn
https://ift.tt/2TXZpng
reddit
r/FlutterDev - Honest question - does Flutter remind you of spaghetti code (like jQuery)?
0 votes and 2 comments so far on Reddit
New post on /r/flutterdev subreddit:
Flutter Platform Channels - Krzysztof Sroka
https://www.youtube.com/watch?v=OUVt9HBLvio
March 28, 2019 at 08:41AM by Purple_Pizzazz
https://ift.tt/2HW4x45
Flutter Platform Channels - Krzysztof Sroka
https://www.youtube.com/watch?v=OUVt9HBLvio
March 28, 2019 at 08:41AM by Purple_Pizzazz
https://ift.tt/2HW4x45
YouTube
Flutter Platform Channels @ Cross-platformxWRO #3 Meetup
Cross-platformxWRO #3 Meetup 05.03.2019 Part 2
Krzysztof Sroka
When it comes to writing apps using Flutter, you will eventually want to bridge some gaps between its libraries and whatever’s being provided by your favourite native OS. Krzysztof gave a talk…
Krzysztof Sroka
When it comes to writing apps using Flutter, you will eventually want to bridge some gaps between its libraries and whatever’s being provided by your favourite native OS. Krzysztof gave a talk…