New post on /r/flutterdev subreddit:
FlutterUI - Minimal Apps - Currencies
https://youtu.be/KQgRaufECvw
February 13, 2019 at 06:04PM by rajayogan27
http://bit.ly/2IcxzOO
FlutterUI - Minimal Apps - Currencies
https://youtu.be/KQgRaufECvw
February 13, 2019 at 06:04PM by rajayogan27
http://bit.ly/2IcxzOO
YouTube
FlutterUI - Minimal Apps - Currencies
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:
Tired of writing repetitive code when using the BLoC pattern ? 😴
http://bit.ly/2SO9yS1
February 13, 2019 at 07:08PM by aloisdeniel
http://bit.ly/2TM2mmJ
Tired of writing repetitive code when using the BLoC pattern ? 😴
http://bit.ly/2SO9yS1
February 13, 2019 at 07:08PM by aloisdeniel
http://bit.ly/2TM2mmJ
New post on /r/flutterdev subreddit:
Best way to adapt flutter UI to different screen ratios and resolutions?
Hello. Maybe you guys have a good way to scale UI based on device screen aspect and resolution. I found this package: https://pub.dartlang.org/packages/flutter_screenutil but maybe there is a better simpler way to achieve this, i.e. to scale down or up the whole top widget in a tree (by a certain set factor), depending on the device. Thanks for ideas!
February 13, 2019 at 08:42PM by nieistniejacy
http://bit.ly/2V1gmJP
Best way to adapt flutter UI to different screen ratios and resolutions?
Hello. Maybe you guys have a good way to scale UI based on device screen aspect and resolution. I found this package: https://pub.dartlang.org/packages/flutter_screenutil but maybe there is a better simpler way to achieve this, i.e. to scale down or up the whole top widget in a tree (by a certain set factor), depending on the device. Thanks for ideas!
February 13, 2019 at 08:42PM by nieistniejacy
http://bit.ly/2V1gmJP
Dart packages
flutter_screenutil | Flutter Package
A flutter plugin for adapting screen and font size.Guaranteed to look good on different models
New post on /r/flutterdev subreddit:
Do we need a better way to write REST API clients (my approach provided)?
I'm developing my first Flutter app after many years as Android dev. I found that developing REST API client requires quite a lot of utility code around awesome http.get()/post(). I don't want to reinvent the wheel so asking if there is library to fulfill simple requirements. I want:to have option to print all requests/responses for debug purposes;to have an easy way to decode json response into an specific object;to handle API errors as call result (all non 2xx responses) where result is decoded json error response as custom object;to handle network errors as a call result (avoid using catch block);to use type safety as much as possible;Because I couldn't find handy lib, I come up with the solution where each API call can be constructed like this
February 13, 2019 at 09:41PM by pilgr
http://bit.ly/2X11FrT
Do we need a better way to write REST API clients (my approach provided)?
I'm developing my first Flutter app after many years as Android dev. I found that developing REST API client requires quite a lot of utility code around awesome http.get()/post(). I don't want to reinvent the wheel so asking if there is library to fulfill simple requirements. I want:to have option to print all requests/responses for debug purposes;to have an easy way to decode json response into an specific object;to handle API errors as call result (all non 2xx responses) where result is decoded json error response as custom object;to handle network errors as a call result (avoid using catch block);to use type safety as much as possible;Because I couldn't find handy lib, I come up with the solution where each API call can be constructed like this
Future<ApiResult<Client>> addClient(String name) { return post( "/api/clients", payload: {"name": name}, resultFactory: (json) => Client.fromJson(json), ); }The result of API call is always an object: Success<T>, ApiError or NetError (all extending ApiResult).And on the caller side (with additional help of ApiResult.verify()) it looks as simple as this
Success<Client> result = (await _api.addClient(newClientName)).verify( // e.g. show dialog with error response from the server apiErrorHandler: (apiError) => ..., // e.g. provide retry button while on spotty network netErrorHandler: (netError) => ..., ); if (result == null) return; // at this point I can be sure request succeeded and Client object can be safely consumed as result.dataNo rocket science here, just a more friendly API to construct, debug and consume REST API.Should I extract this approach to the library or I'm doing all this wrong and there is more flutter/dart idiomatic way to deal with all that stuff?Appreciate your responses.
February 13, 2019 at 09:41PM by pilgr
http://bit.ly/2X11FrT
reddit
r/FlutterDev - Do we need a better way to write REST API clients (my approach provided)?
1 vote and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Build Gmail with Flutter Ep5: Navigate to Detail Page
https://youtu.be/sKEyQWcAbow
February 13, 2019 at 09:37PM by impatientdeveloper
http://bit.ly/2RZMHyL
Build Gmail with Flutter Ep5: Navigate to Detail Page
https://youtu.be/sKEyQWcAbow
February 13, 2019 at 09:37PM by impatientdeveloper
http://bit.ly/2RZMHyL
YouTube
Flutter for the Impatient - 14 - Build Gmail with Flutter (5) Navigate To Detail Page
Let's build a Gmail clone mobile app with Flutter that runs on both Android and iOS! This is the fifth video of a series to clone the new 2019 Gmail material...
New post on /r/flutterdev subreddit:
Live Templates, or how to spend less time writing boilerplate code on Flutter with IntelliJ
http://bit.ly/2SS4JqY
February 13, 2019 at 10:12PM by Vanethos
http://bit.ly/2TICyrI
Live Templates, or how to spend less time writing boilerplate code on Flutter with IntelliJ
http://bit.ly/2SS4JqY
February 13, 2019 at 10:12PM by Vanethos
http://bit.ly/2TICyrI
Medium
Live Templates, or how to spend less time writing boilerplate code on Flutter with IntelliJ
How Live Templates can reduce the number of times we write the same boilerplate code
New post on Flutter Dev Google group:
Markup language
On my current project I’m using firebase and firestore with flutter. Right now I have an issue where I can only input information into a page from my database if it adheres to a very strict layout defined by my flutter page widgets. My question is. Is there a way to do something similar to
February 14, 2019 at 01:59AM by Brennan Altringer
http://bit.ly/2N6rsKO
Markup language
On my current project I’m using firebase and firestore with flutter. Right now I have an issue where I can only input information into a page from my database if it adheres to a very strict layout defined by my flutter page widgets. My question is. Is there a way to do something similar to
February 14, 2019 at 01:59AM by Brennan Altringer
http://bit.ly/2N6rsKO
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 admob banner ads integration
https://youtu.be/rXYmbTBT3Yo
February 14, 2019 at 07:49AM by ishanfx
http://bit.ly/2IcHqUM
Flutter admob banner ads integration
https://youtu.be/rXYmbTBT3Yo
February 14, 2019 at 07:49AM by ishanfx
http://bit.ly/2IcHqUM
YouTube
Flutter - How to integrate Admob banner Ads to Flutter app
In this tutorial show you how to integrate admob banner ads to the flutter application.
Blog - https://mightytechno.com
Flutter Bootcamp - https://rebrand.ly/flutterbootcamp
Support by Patreon - https://www.patreon.com/mightytechno
Flutter Admob - https…
Blog - https://mightytechno.com
Flutter Bootcamp - https://rebrand.ly/flutterbootcamp
Support by Patreon - https://www.patreon.com/mightytechno
Flutter Admob - https…
New post on /r/flutterdev subreddit:
Flutter horizontal circle listview part 1
http://bit.ly/2E8NVUq
February 14, 2019 at 09:47AM by ishanfx
http://bit.ly/2tnJWNz
Flutter horizontal circle listview part 1
http://bit.ly/2E8NVUq
February 14, 2019 at 09:47AM by ishanfx
http://bit.ly/2tnJWNz
MIGHTY TECHNO
Flutter - Horizontal Circle listview Part 1 - MIGHTY TECHNO
Flutter is a new and rich SDK for cross platform app development for Android and iOS with was from Google. We can develop single codebase to share with both platform. Flutter have cool set of feature which will help to make developer life easier. Cool feature…
New post on /r/flutterdev subreddit:
Samsung Galaxy S9 rotating image from camera
Hi, I'm trying to upload a camera image to a server on the Galaxy S9 but every time I do, it rotates the image by 90 degrees. Is this a common Samsung Problem or it's a library problem?If you need my code let me know.
February 14, 2019 at 12:05PM by gigab_te
http://bit.ly/2S2sdVL
Samsung Galaxy S9 rotating image from camera
Hi, I'm trying to upload a camera image to a server on the Galaxy S9 but every time I do, it rotates the image by 90 degrees. Is this a common Samsung Problem or it's a library problem?If you need my code let me know.
February 14, 2019 at 12:05PM by gigab_te
http://bit.ly/2S2sdVL
reddit
r/FlutterDev - Samsung Galaxy S9 rotating image from camera
1 vote and 2 comments so far on Reddit
New post on Flutter Dev Google group:
Navigation within Nested FutureBuilder
Hi, This is the SoF link: Click Here < https://stackoverflow.com/questions/54691767/navigation-within-nested-futurebuilder?noredirect=1#comment96173556_54691767> This is my Boot Screen and I want to create conditional Navigations but as I understand FutureBuilder does not have logic for
February 14, 2019 at 04:12PM by Esen
http://bit.ly/2N4PeXn
Navigation within Nested FutureBuilder
Hi, This is the SoF link: Click Here < https://stackoverflow.com/questions/54691767/navigation-within-nested-futurebuilder?noredirect=1#comment96173556_54691767> This is my Boot Screen and I want to create conditional Navigations but as I understand FutureBuilder does not have logic for
February 14, 2019 at 04:12PM by Esen
http://bit.ly/2N4PeXn
Stack Overflow
Navigation within Nested FutureBuilder
This is my Boot Screen and I want to create conditional Navigations but as I understand FutureBuilder does not have logic for Navigation.
This is my Boot Screen build method:
@override
Widget build(
This is my Boot Screen build method:
@override
Widget build(
New post on /r/flutterdev subreddit:
[HELP Needed] How to pause flutter video(video_player plugin) when navigating from page to another.
I'm using flutter video_player(https://pub.dartlang.org/packages/video_player) plugin to play videos. But When I navigate from one page to another in flutter the video is still playing. I'm having the same problem when playing music from any other app(eg: playing music from notification while flutter video is playing). How can I pause it?
February 14, 2019 at 03:14PM by divyanshub024
http://bit.ly/2TOCBSZ
[HELP Needed] How to pause flutter video(video_player plugin) when navigating from page to another.
I'm using flutter video_player(https://pub.dartlang.org/packages/video_player) plugin to play videos. But When I navigate from one page to another in flutter the video is still playing. I'm having the same problem when playing music from any other app(eg: playing music from notification while flutter video is playing). How can I pause it?
February 14, 2019 at 03:14PM by divyanshub024
http://bit.ly/2TOCBSZ
Dart packages
video_player | Flutter package
Flutter plugin for displaying inline video with other Flutter widgets on Android, iOS, macOS and web.
New post on Flutter Dev Google group:
Firebase Error - setTimestampsInSnapshotsEnabled(true)
I am getting this error when i will try to get data from firebase. Has anyone idea how to resolve that? ------------------------------------------------------------------------------ W/Firestore(23489): (0.6.6-dev) [Firestore]: The behavior for java.util.Date objects stored in Firestore is going
February 14, 2019 at 05:06PM by Pooja Patel
http://bit.ly/2GJjWEc
Firebase Error - setTimestampsInSnapshotsEnabled(true)
I am getting this error when i will try to get data from firebase. Has anyone idea how to resolve that? ------------------------------------------------------------------------------ W/Firestore(23489): (0.6.6-dev) [Firestore]: The behavior for java.util.Date objects stored in Firestore is going
February 14, 2019 at 05:06PM by Pooja Patel
http://bit.ly/2GJjWEc
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:
build ios
how i can extract the ipa file from flutter app to debug it with my testers who using iphones . i have a mac virtual machine ,but i don't have an apple developer account and i can't pay for it . i think if i can extract the ipa file and then upload it to diawi , the problem will finish .
February 14, 2019 at 05:46PM by Kero Atef
http://bit.ly/2IcVwoZ
build ios
how i can extract the ipa file from flutter app to debug it with my testers who using iphones . i have a mac virtual machine ,but i don't have an apple developer account and i can't pay for it . i think if i can extract the ipa file and then upload it to diawi , the problem will finish .
February 14, 2019 at 05:46PM by Kero Atef
http://bit.ly/2IcVwoZ
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:
Build Gmail with Flutter Ep6: Organize Multi-Page Code Structure
https://youtu.be/K0IHD-xB-Bc
February 14, 2019 at 06:42PM by impatientdeveloper
http://bit.ly/2TJUe6l
Build Gmail with Flutter Ep6: Organize Multi-Page Code Structure
https://youtu.be/K0IHD-xB-Bc
February 14, 2019 at 06:42PM by impatientdeveloper
http://bit.ly/2TJUe6l
YouTube
Flutter for the Impatient - 15 - Build Gmail with Flutter (6) Organize Multi-Page Code Structure
Let's build a Gmail clone mobile app with Flutter that runs on both Android and iOS! This is the sixth video of a series to clone the new 2019 Gmail material...
New post on /r/flutterdev subreddit:
Enhance your skills and career using the power of open source
http://bit.ly/2BzYyy4
February 14, 2019 at 06:23PM by burhanrashid52
http://bit.ly/2GpQlR2
Enhance your skills and career using the power of open source
http://bit.ly/2BzYyy4
February 14, 2019 at 06:23PM by burhanrashid52
http://bit.ly/2GpQlR2
Medium
Enhance your skills and career using the power of open source
This blog is meant for anyone who is looking to enhance their programming skills and career. You could be a fresher who just started…
New post on /r/flutterdev subreddit:
Flutter: Firebase CRUD Using Cloud Firestore | BLoC Refactoring
https://youtu.be/_j7yKt3vivk
February 14, 2019 at 07:47PM by RobertBrunhage
http://bit.ly/2TLVA0d
Flutter: Firebase CRUD Using Cloud Firestore | BLoC Refactoring
https://youtu.be/_j7yKt3vivk
February 14, 2019 at 07:47PM by RobertBrunhage
http://bit.ly/2TLVA0d
YouTube
Flutter: Firebase CRUD Using Cloud Firestore | BLoC Refactoring
Sign up here for more videos: https://robertbrunhage.com/
Join the Discord Community: https://discord.gg/CPwSezC
2 month of free premium Skillshare ➡️ https://skillshare.eqcm.net/vY4ve
⭐⭐⭐ SUPPORT ME ⭐⭐⭐
Patreon: https://www.patreon.com/…
Join the Discord Community: https://discord.gg/CPwSezC
2 month of free premium Skillshare ➡️ https://skillshare.eqcm.net/vY4ve
⭐⭐⭐ SUPPORT ME ⭐⭐⭐
Patreon: https://www.patreon.com/…
New post on /r/flutterdev subreddit:
Are Flutter apps easy to maintain and easy to change?
No text found
February 14, 2019 at 07:40PM by refine_and_refine
http://bit.ly/2BzsKcI
Are Flutter apps easy to maintain and easy to change?
No text found
February 14, 2019 at 07:40PM by refine_and_refine
http://bit.ly/2BzsKcI
reddit
r/FlutterDev - Are Flutter apps easy to maintain and easy to change?
1 vote and 1 comment so far on Reddit
New post on /r/flutterdev subreddit:
Help with meteor and flutter
Hi, I'm a developer at react-native but I'm migrating to flutter and I wanted to know if there's any way to connect to my meteorbackend? https://pub.dartlang.org/packages/ddp this plugin does not explain how to use it and I have been advised not to use it, but my backend is done in meteor so I need to be able to have a ddp connection
February 14, 2019 at 08:16PM by levs0812
http://bit.ly/2NaPT9W
Help with meteor and flutter
Hi, I'm a developer at react-native but I'm migrating to flutter and I wanted to know if there's any way to connect to my meteorbackend? https://pub.dartlang.org/packages/ddp this plugin does not explain how to use it and I have been advised not to use it, but my backend is done in meteor so I need to be able to have a ddp connection
February 14, 2019 at 08:16PM by levs0812
http://bit.ly/2NaPT9W
Dart Packages
ddp | Dart Package
ddp Dart package - MeteorJS DDP library for Dart.
New post on /r/flutterdev subreddit:
Open source project flutter
Has anyone started open source project with flutter?Just curious to hear your insight.
February 14, 2019 at 08:38PM by bitcoin-wiz
http://bit.ly/2Sx9qHr
Open source project flutter
Has anyone started open source project with flutter?Just curious to hear your insight.
February 14, 2019 at 08:38PM by bitcoin-wiz
http://bit.ly/2Sx9qHr
reddit
r/FlutterDev - Open source project flutter
1 vote and 2 comments so far on Reddit