New post on /r/flutterdev subreddit:
Flutter Tap Newsletter - Week 7
https://ift.tt/2LQYOya
October 07, 2019 at 01:54PM by vensign
https://ift.tt/30Utt1V
Flutter Tap Newsletter - Week 7
https://ift.tt/2LQYOya
October 07, 2019 at 01:54PM by vensign
https://ift.tt/30Utt1V
Fluttertap
Newsletter Issue 7
Flutter tap newsletter with the latest of flutter - Issue 7
New post on Flutter Dev Google group:
Auto ML Vision Edge
Hi Team, What is the roadmap on supporting Auto ML Vision Edge? I am developing an app on Flutter and it will require to use a custom model. Firebase have already libraries for Android and IOS but not flutter. Is it close on the horizon? There is one wrapper someone did from the community but I
October 07, 2019 at 03:04PM by Arny
https://ift.tt/2opoo4r
Auto ML Vision Edge
Hi Team, What is the roadmap on supporting Auto ML Vision Edge? I am developing an app on Flutter and it will require to use a custom model. Firebase have already libraries for Android and IOS but not flutter. Is it close on the horizon? There is one wrapper someone did from the community but I
October 07, 2019 at 03:04PM by Arny
https://ift.tt/2opoo4r
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:
Google Sign In cross-platform (web/mobile)
I created a package that wraps mobile and web implementation of Google Sign In.https://pub.dev/packages/google_sign_in_allNOTE: The package is still under development, but you can test it.
October 07, 2019 at 04:19PM by jarekb123
https://ift.tt/33kAxqj
Google Sign In cross-platform (web/mobile)
I created a package that wraps mobile and web implementation of Google Sign In.https://pub.dev/packages/google_sign_in_allNOTE: The package is still under development, but you can test it.
October 07, 2019 at 04:19PM by jarekb123
https://ift.tt/33kAxqj
Dart packages
google_sign_in_all | Flutter Package
Flutter Google Sign In wrapper on `googleapis_auth` (Web) and `google_sign_in` (Android/iOS)
New post on /r/flutterdev subreddit:
How can I always display the current date?
I can get the current date, but say it turns midnight, how do I make my date real-time? Do I have to poll some free date API for it?
October 07, 2019 at 03:28PM by purplegreencab
https://ift.tt/30V4XgU
How can I always display the current date?
I can get the current date, but say it turns midnight, how do I make my date real-time? Do I have to poll some free date API for it?
October 07, 2019 at 03:28PM by purplegreencab
https://ift.tt/30V4XgU
reddit
How can I always display the current date?
I can get the current date, but say it turns midnight, how do I make my date real-time? Do I have to poll some free date API for it?
New post on /r/flutterdev subreddit:
Podcast - Flutter Dev - Rody Davis
https://ift.tt/2MkyGKX
October 07, 2019 at 05:17PM by SoundDr
https://ift.tt/31UyI2V
Podcast - Flutter Dev - Rody Davis
https://ift.tt/2MkyGKX
October 07, 2019 at 05:17PM by SoundDr
https://ift.tt/31UyI2V
Inside iOS Dev
Alex interviews Rody Davis about Flutter, a cross platform framework for iOS and Android development. They also address cross platform development issues Dropbox experienced with their mobile apps.
New post on /r/flutterdev subreddit:
Sorting algorithms visualizer
https://ift.tt/2Orr3VO
October 07, 2019 at 05:52PM by bimsina
https://ift.tt/2OCivf5
Sorting algorithms visualizer
https://ift.tt/2Orr3VO
October 07, 2019 at 05:52PM by bimsina
https://ift.tt/2OCivf5
GitHub
bimsina/SortingAlgorithmsVisualizer
Sorting algorithms visualizer in Flutter. Contribute to bimsina/SortingAlgorithmsVisualizer development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Flutter web firebase hosting creating new index.html and deploying that only.
Hi there, I developed a flutter web ,but hosting firebase is not understanding. I followed but that process creating new index file not deploying my dart html file
October 07, 2019 at 05:44PM by Thiszmyusername
https://ift.tt/2IuXAX4
Flutter web firebase hosting creating new index.html and deploying that only.
Hi there, I developed a flutter web ,but hosting firebase is not understanding. I followed but that process creating new index file not deploying my dart html file
October 07, 2019 at 05:44PM by Thiszmyusername
https://ift.tt/2IuXAX4
reddit
Flutter web firebase hosting creating new index.html and deploying...
A subreddit related to Google's new UI framework.
New post on /r/flutterdev subreddit:
Is There a Good Way to Draw Hit Area Over Image in Flutter?
When you have design assets that you want to turn into a working app, it's much faster to draw hit areas over image mockups versus recreating the design as an app.Does anyone have experience simulating UIs using images in Flutter?
October 07, 2019 at 06:07PM by gamelaunchplatform
https://ift.tt/2Vk6MD2
Is There a Good Way to Draw Hit Area Over Image in Flutter?
When you have design assets that you want to turn into a working app, it's much faster to draw hit areas over image mockups versus recreating the design as an app.Does anyone have experience simulating UIs using images in Flutter?
October 07, 2019 at 06:07PM by gamelaunchplatform
https://ift.tt/2Vk6MD2
reddit
Is There a Good Way to Draw Hit Area Over Image in Flutter?
When you have design assets that you want to turn into a working app, it's much faster to draw hit areas over image mockups versus recreating the...
New post on /r/flutterdev subreddit:
Minimal Quotes app which has 3500+ quotes. Need Someone to collaborate.
https://ift.tt/2oqgEPF
October 07, 2019 at 07:08PM by chif_
https://ift.tt/2Vm07YZ
Minimal Quotes app which has 3500+ quotes. Need Someone to collaborate.
https://ift.tt/2oqgEPF
October 07, 2019 at 07:08PM by chif_
https://ift.tt/2Vm07YZ
GitHub
Imgkl/Quote
Contribute to Imgkl/Quote development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Cached data from BE
Hi to everyone,In Android project we have a module, which refreshes data, it stores the timestamp of the last update (usually in SharedPrefs) and update, if data is old.Api is simple (simplified even more):Refresher(key: String, timeToBecomeOld: Long, saveAction: (data: T) -> Unit, fetchAction: () -> Single<T>, databaseStream: Observable<T>) {fun stream(force: Boolean): Observable<T> {// here we return first item from database and// if it's empty or shared prefs say that this is very old, we fetch again and return stream of the data, database is reactive and returns new data on save.}}usage:val usersRefresher = Refresher("users", 5 minutes, database::save, api::fetch, database::users)fun getUsers(force: Boolean) = usersRefresher.stream(force)Problem is that this module is big enough and describes a lot of logic (parallel calls to same stream are producing only one refresh etc.) I was wondering, if you know some kind of made library or snippets to do such kind of behavior on Flutter.P.S. Sorry for the formatting, never used formatting in Reddit before
October 07, 2019 at 07:57PM by tonyshkurenko
https://ift.tt/2ASMjf3
Cached data from BE
Hi to everyone,In Android project we have a module, which refreshes data, it stores the timestamp of the last update (usually in SharedPrefs) and update, if data is old.Api is simple (simplified even more):Refresher(key: String, timeToBecomeOld: Long, saveAction: (data: T) -> Unit, fetchAction: () -> Single<T>, databaseStream: Observable<T>) {fun stream(force: Boolean): Observable<T> {// here we return first item from database and// if it's empty or shared prefs say that this is very old, we fetch again and return stream of the data, database is reactive and returns new data on save.}}usage:val usersRefresher = Refresher("users", 5 minutes, database::save, api::fetch, database::users)fun getUsers(force: Boolean) = usersRefresher.stream(force)Problem is that this module is big enough and describes a lot of logic (parallel calls to same stream are producing only one refresh etc.) I was wondering, if you know some kind of made library or snippets to do such kind of behavior on Flutter.P.S. Sorry for the formatting, never used formatting in Reddit before
October 07, 2019 at 07:57PM by tonyshkurenko
https://ift.tt/2ASMjf3
New post on Flutter Dev Google group:
How to update simpledialogoption based on dynamic data from database?
https://ift.tt/321fAjW
October 07, 2019 at 10:06PM by prakash king
https://ift.tt/31UV3NV
How to update simpledialogoption based on dynamic data from database?
https://ift.tt/321fAjW
October 07, 2019 at 10:06PM by prakash king
https://ift.tt/31UV3NV
Stack Overflow
How to update simple dialog option in alert dialog box based on data from database dynamically?
In flutter, need to update the view of alertbox options based on data in database. When it has 3 items, it should build 3 simple dialog option in dialog. Its should get no of widgets and its value...
New post on /r/flutterdev subreddit:
Flutter Arsenal is a categorized directory of libraries and tools for Flutter. These libraries and tools are so-called WEAPONS of this ARSENAL.
https://ift.tt/2OrWhMD
October 07, 2019 at 09:39PM by rahul1996_
https://ift.tt/2pM9563
Flutter Arsenal is a categorized directory of libraries and tools for Flutter. These libraries and tools are so-called WEAPONS of this ARSENAL.
https://ift.tt/2OrWhMD
October 07, 2019 at 09:39PM by rahul1996_
https://ift.tt/2pM9563
New post on /r/flutterdev subreddit:
Can I build and debug flutter web apps with android studio?
Hi,Today I will start playing a bit with flutter for the web. I'm used to use android studio for my apps. Can I use android studio for building and debugging flutter web apps to?Cheers.
October 07, 2019 at 11:43PM by wacomlover
https://ift.tt/2OubAEG
Can I build and debug flutter web apps with android studio?
Hi,Today I will start playing a bit with flutter for the web. I'm used to use android studio for my apps. Can I use android studio for building and debugging flutter web apps to?Cheers.
October 07, 2019 at 11:43PM by wacomlover
https://ift.tt/2OubAEG
reddit
Can I build and debug flutter web apps with android studio?
Hi, Today I will start playing a bit with flutter for the web. I'm used to use android studio for my apps. Can I use android studio for building...
New post on /r/flutterdev subreddit:
A collapsible header example I've lost interest in continuing development, gif inside.
https://ift.tt/2Iy6UJQ
October 07, 2019 at 11:58PM by Gibepad
https://ift.tt/2nmqJMS
A collapsible header example I've lost interest in continuing development, gif inside.
https://ift.tt/2Iy6UJQ
October 07, 2019 at 11:58PM by Gibepad
https://ift.tt/2nmqJMS
GitHub
Timoteohss/collapsible_header
A collapsible header for Flutter based on https://dribbble.com/shots/7275180-WhereNear-Dribble-Invite-to-Give - Timoteohss/collapsible_header
New post on /r/flutterdev subreddit:
π₯ Learn what is the BLoC pattern and How to State Management in Flutter π₯
https://www.youtube.com/watch?v=3pONywPepHU
October 08, 2019 at 12:58AM by GiancarloCode
https://ift.tt/2ooWRjp
π₯ Learn what is the BLoC pattern and How to State Management in Flutter π₯
https://www.youtube.com/watch?v=3pONywPepHU
October 08, 2019 at 12:58AM by GiancarloCode
https://ift.tt/2ooWRjp
YouTube
π What is the BLoC pattern in Flutter? π₯ State management in flutter with the BLoC pattern π₯
π₯ In this part of the Flutter course you will learn what is the BLoC Pattern and how to state management in Flutter with the BLoC pattern π₯
π Content:
π‘ 00:09 What is the BLoC Pattern?
π‘ 00:33 What is a BLoC (Business Logic Component)?
π‘ 00:48β¦
π Content:
π‘ 00:09 What is the BLoC Pattern?
π‘ 00:33 What is a BLoC (Business Logic Component)?
π‘ 00:48β¦
New post on /r/flutterdev subreddit:
Share Content with the Flutter Share Plugin
https://ift.tt/35epSyR
October 08, 2019 at 01:42AM by catapop
https://ift.tt/2VnHV1l
Share Content with the Flutter Share Plugin
https://ift.tt/35epSyR
October 08, 2019 at 01:42AM by catapop
https://ift.tt/2VnHV1l
alligator.io
Share Content with the Flutter Share Plugin
Learn how to use the share plugin in Flutter to take advantage of the native platform share features inside your mobile apps.
New post on /r/flutterdev subreddit:
My first package - a highly customizable circular slider
Hi,I've been an iOS developer for years. I had been rather sceptical when it comes to any cross-platform solutions but a few weeks ago I started to play with Flutter and was very pleasantly surprised by it. Anyways, without further ado I'd like to show you my first Flutter package. Please let me know what do you think!βhttps://youtu.be/ECXdRYs89QYhttps://pub.dev/packages/sleek_circular_slider
October 08, 2019 at 05:22AM by matfx26
https://ift.tt/2LUMNHV
My first package - a highly customizable circular slider
Hi,I've been an iOS developer for years. I had been rather sceptical when it comes to any cross-platform solutions but a few weeks ago I started to play with Flutter and was very pleasantly surprised by it. Anyways, without further ado I'd like to show you my first Flutter package. Please let me know what do you think!βhttps://youtu.be/ECXdRYs89QYhttps://pub.dev/packages/sleek_circular_slider
October 08, 2019 at 05:22AM by matfx26
https://ift.tt/2LUMNHV
YouTube
Sleek circular slider/progress bar for Flutter
A highly customizable circular slider for Flutter. https://github.com/matthewfx/sleek-circular-slider
New post on /r/flutterdev subreddit:
Create an infinite list through flutter GridView Builder with firebase | flutter tutorials
https://www.youtube.com/watch?v=DZEHx2GzXZk&feature=youtu.be
October 08, 2019 at 06:53AM by mi6crazyheart
https://ift.tt/2p6C3x5
Create an infinite list through flutter GridView Builder with firebase | flutter tutorials
https://www.youtube.com/watch?v=DZEHx2GzXZk&feature=youtu.be
October 08, 2019 at 06:53AM by mi6crazyheart
https://ift.tt/2p6C3x5
YouTube
Create an infinite list through flutter GridView Builder with firebase | flutter tutorials
This video is about flutter GridView builder. It'll help you to understand how you can use flutter GridView builder to make an infinite list of contents or l...
New post on /r/flutterdev subreddit:
β#5 Flutter + Dart Tipsβ by Bhavik Makwana
https://ift.tt/2IuNF3U
October 08, 2019 at 08:57AM by ibhavikmakwana
https://ift.tt/31Y0gUT
β#5 Flutter + Dart Tipsβ by Bhavik Makwana
https://ift.tt/2IuNF3U
October 08, 2019 at 08:57AM by ibhavikmakwana
https://ift.tt/31Y0gUT
Medium
#5 Flutter + Dart Tips
Here is the #5 article in this Flutter + Dart Tips series. If you have missed previous articles then you can check them out here.
New post on /r/flutterdev subreddit:
#9 RaisedButton Flutter Widget
https://youtu.be/kTpGoAt6HmE
October 08, 2019 at 08:56AM by systechdevelopers
https://ift.tt/2LTLaKH
#9 RaisedButton Flutter Widget
https://youtu.be/kTpGoAt6HmE
October 08, 2019 at 08:56AM by systechdevelopers
https://ift.tt/2LTLaKH
YouTube
#9 Widget RaisedButton | Flutter Tutorial | Google
#9 flutter widget raised button.
New post on /r/flutterdev subreddit:
google_sign_in_all | Flutter Google Sign In wrapper for web and mobile
https://ift.tt/2liImfw
October 08, 2019 at 09:16AM by jarekb123
https://ift.tt/2VnChMs
google_sign_in_all | Flutter Google Sign In wrapper for web and mobile
https://ift.tt/2liImfw
October 08, 2019 at 09:16AM by jarekb123
https://ift.tt/2VnChMs
Dart packages
google_sign_in_all | Flutter Package
Flutter Google Sign In wrapper on `googleapis_auth` (Web) and `google_sign_in` (Android/iOS)