New post on /r/flutterdev subreddit:
Flutter Community will be doing Q&A at the Flutter booth tomrrow evening from DroidConBerlin #AskFlutterCommunity
https://twitter.com/FlutterComm/status/1146182206219534336
July 03, 2019 at 12:34AM by Nash0x7E2
https://ift.tt/2LyXgZU
Flutter Community will be doing Q&A at the Flutter booth tomrrow evening from DroidConBerlin #AskFlutterCommunity
https://twitter.com/FlutterComm/status/1146182206219534336
July 03, 2019 at 12:34AM by Nash0x7E2
https://ift.tt/2LyXgZU
Twitter
Flutter Community
#FlutterCommunity is at #DCBerlin19 and will be doing a Q&A at the Flutter booth tomorrow afternoon for #HumpdayQandA (at 13:00UTC). If you have any questions send them using #AskFlutterCommunity soon!
New post on Flutter Dev Google group:
[Breaking Change]: AsyncSnapshot.data to throw if there's an error
[bcc flutter-announce] Hi all, Currently, if you attempt to access the AsyncSnapshot.data property when the error property is non-null, it will return null.
July 03, 2019 at 03:37AM by Todd Volkert
https://ift.tt/307BKiQ
[Breaking Change]: AsyncSnapshot.data to throw if there's an error
[bcc flutter-announce] Hi all, Currently, if you attempt to access the AsyncSnapshot.data property when the error property is non-null, it will return null.
July 03, 2019 at 03:37AM by Todd Volkert
https://ift.tt/307BKiQ
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:
Gradle error when trying to run Flutter app.
https://ift.tt/2FNNXBG
July 03, 2019 at 05:17AM by MqtUA
https://ift.tt/2YtubCR
Gradle error when trying to run Flutter app.
https://ift.tt/2FNNXBG
July 03, 2019 at 05:17AM by MqtUA
https://ift.tt/2YtubCR
reddit
r/Flutter - Gradle error when trying to run Flutter app.
1 vote and 5 comments so far on Reddit
New post on /r/flutterdev subreddit:
Custom Shrinking Sticky Headers in Flutter
https://ift.tt/2Yr9Cqp
July 03, 2019 at 05:11AM by Filledstacks
https://ift.tt/2NwQcQ0
Custom Shrinking Sticky Headers in Flutter
https://ift.tt/2Yr9Cqp
July 03, 2019 at 05:11AM by Filledstacks
https://ift.tt/2NwQcQ0
Filledstacks
Custom Sticky headers in Flutter
This tutorial shows you how to setup Sticky Headers in Flutter
New post on /r/flutterdev subreddit:
Google Play 64-bit requirement & Flutter : Check this if you're getting warnings about requiring a 64-bit version of your Flutter app when publishing to the Google Play Store
https://ift.tt/2Jp2qVt
July 03, 2019 at 06:43AM by EngineerScientist
https://ift.tt/326dsaP
Google Play 64-bit requirement & Flutter : Check this if you're getting warnings about requiring a 64-bit version of your Flutter app when publishing to the Google Play Store
https://ift.tt/2Jp2qVt
July 03, 2019 at 06:43AM by EngineerScientist
https://ift.tt/326dsaP
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 to Create Custom List View Cards in Flutter: A Beginners Tutorial to Custom Models and List Views
https://www.youtube.com/watch?v=1Y6o1DOUJcU&t
July 03, 2019 at 06:28AM by projectmind_guru
https://ift.tt/2XgASqw
How to Create Custom List View Cards in Flutter: A Beginners Tutorial to Custom Models and List Views
https://www.youtube.com/watch?v=1Y6o1DOUJcU&t
July 03, 2019 at 06:28AM by projectmind_guru
https://ift.tt/2XgASqw
YouTube
(Ep 13) How to Create Custom List View Cards in Flutter
This video we’ll build out the cards for the home page. The cards will live inside a list view but, we’re going to create a custom card widget for the list i...
New post on Flutter Dev Google group:
hello all friends. who know how generate data from firebase database into charts. stuck to get data
in my app, im do snap photo and save to firebase database(realtime). when user save the photo. the date, the time, the day, and description of photo. how to do charts by date. i want to display charts by date how user snap picture by date
July 03, 2019 at 08:25AM by NORUL HIDAYU
https://ift.tt/2Jj99k3
hello all friends. who know how generate data from firebase database into charts. stuck to get data
in my app, im do snap photo and save to firebase database(realtime). when user save the photo. the date, the time, the day, and description of photo. how to do charts by date. i want to display charts by date how user snap picture by date
July 03, 2019 at 08:25AM by NORUL HIDAYU
https://ift.tt/2Jj99k3
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:
Workflow advice
What are some effective ways of getting your idea for an app to a finished product?
July 03, 2019 at 08:02AM by bpbushman
https://ift.tt/30cDrf9
Workflow advice
What are some effective ways of getting your idea for an app to a finished product?
July 03, 2019 at 08:02AM by bpbushman
https://ift.tt/30cDrf9
reddit
r/FlutterDev - Workflow advice
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Smart / Dumb Components in Flutter
https://ift.tt/2KY0gPR
July 03, 2019 at 10:20AM by esarbanis
https://ift.tt/2ROdS0W
Smart / Dumb Components in Flutter
https://ift.tt/2KY0gPR
July 03, 2019 at 10:20AM by esarbanis
https://ift.tt/2ROdS0W
Medium
Smart / Dumb Components in Flutter
The un-opinionated nature of flutter gives room to apply almost any pattern you want. Coming from an angular background I am used to…
New post on /r/flutterdev subreddit:
Any workarounds for platform channels on isolates?
I'm working on an app and one of the requirements is triggering a notification based on the user's location. This needs to work even when the app is terminated. I thought I could just spawn a new isolate that would run the location check every 15 minutes or so (that's good enough) and then trigger a notification. But it seems that you can't use platform channels on a separate isolates, so I wouldn't be able to use location or notifications plugin that rely on platform channels. Do you guys know of any workaround, preferably in Flutter/Dart? If not, and if the only answer is to implement it separately for Android and iOS, any pointers to resources that could be useful?
July 03, 2019 at 09:49AM by lhminnie
https://ift.tt/2YD9yE4
Any workarounds for platform channels on isolates?
I'm working on an app and one of the requirements is triggering a notification based on the user's location. This needs to work even when the app is terminated. I thought I could just spawn a new isolate that would run the location check every 15 minutes or so (that's good enough) and then trigger a notification. But it seems that you can't use platform channels on a separate isolates, so I wouldn't be able to use location or notifications plugin that rely on platform channels. Do you guys know of any workaround, preferably in Flutter/Dart? If not, and if the only answer is to implement it separately for Android and iOS, any pointers to resources that could be useful?
July 03, 2019 at 09:49AM by lhminnie
https://ift.tt/2YD9yE4
reddit
r/FlutterDev - Any workarounds for platform channels on isolates?
0 votes and 1 comment so far on Reddit
New post on Flutter Dev Google group:
Admob on Flutter
I've been trying to code Admob on Flutter. It's failed until now. I'm using firebase_admob: ^0.9.0+1 At last, what I did, I try to do this on Flutter Demo App. create new flutter app add firebase_admob to pubspec.yaml And when I try to launch it in debug mode, it stucked at ---------------------
July 03, 2019 at 11:00AM by Zamri Abdullah
https://ift.tt/2KVLGIV
Admob on Flutter
I've been trying to code Admob on Flutter. It's failed until now. I'm using firebase_admob: ^0.9.0+1 At last, what I did, I try to do this on Flutter Demo App. create new flutter app add firebase_admob to pubspec.yaml And when I try to launch it in debug mode, it stucked at ---------------------
July 03, 2019 at 11:00AM by Zamri Abdullah
https://ift.tt/2KVLGIV
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:
does it safe.
im using my andriod mobile for developing a new fluttered application .does it safe.
July 03, 2019 at 12:51PM by ಮಂಜು
https://ift.tt/2LA49Kv
does it safe.
im using my andriod mobile for developing a new fluttered application .does it safe.
July 03, 2019 at 12:51PM by ಮಂಜು
https://ift.tt/2LA49Kv
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:
MOTIVATLY - My flutter - app finished in one day
Hi guys,yesterday I challenged myself to create an app in one day only.
Here is the result:The app is called Motivatly.
Because my goal is to help people and not make only money.
No need to purchase and also no annoying ads included :) in the app.
So I created this app with inspiring quotes to improve other peoples life.https://play.google.com/store/apps/details?id=com.appmotional.motivately
Please give me a little feedback :)Thank you for your time!
July 03, 2019 at 12:51PM by whatsdog
https://ift.tt/2JlSbBy
MOTIVATLY - My flutter - app finished in one day
Hi guys,yesterday I challenged myself to create an app in one day only.
Here is the result:The app is called Motivatly.
Because my goal is to help people and not make only money.
No need to purchase and also no annoying ads included :) in the app.
So I created this app with inspiring quotes to improve other peoples life.https://play.google.com/store/apps/details?id=com.appmotional.motivately
Please give me a little feedback :)Thank you for your time!
July 03, 2019 at 12:51PM by whatsdog
https://ift.tt/2JlSbBy
Google Play
Motivatly - Apps on Google Play
Have you ever had a bad time?
I guess Yes!
This app motivates you by showing quotes which help you to get your focus.
No Costs. No Ads. You do not have to support us. But you can if you really want!
It is appreciated.
Have fun!
I guess Yes!
This app motivates you by showing quotes which help you to get your focus.
No Costs. No Ads. You do not have to support us. But you can if you really want!
It is appreciated.
Have fun!
New post on /r/flutterdev subreddit:
Bottom Navigation Bar using Provider | Flutter
https://ift.tt/2XNaZ5P
July 03, 2019 at 03:36PM by ashishrawat2911
https://ift.tt/30eIwUh
Bottom Navigation Bar using Provider | Flutter
https://ift.tt/2XNaZ5P
July 03, 2019 at 03:36PM by ashishrawat2911
https://ift.tt/30eIwUh
Medium
Bottom Navigation Bar using Provider | Flutter
Add the dependency in your pubspec.yaml
New post on Flutter Dev Google group:
i am getting an issue while run flutter doctor command.
that is some andoid licenses not accepted(android toolchain) and not able connect my android device....? whats the problem
July 03, 2019 at 03:56PM by ಮಂಜು
https://ift.tt/2Jjgno2
i am getting an issue while run flutter doctor command.
that is some andoid licenses not accepted(android toolchain) and not able connect my android device....? whats the problem
July 03, 2019 at 03:56PM by ಮಂಜು
https://ift.tt/2Jjgno2
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 alternatives? Compose vs SwiftUI
https://ift.tt/2YuGvTn
July 03, 2019 at 04:15PM by julianlenz
https://ift.tt/2FNNvmM
Flutter alternatives? Compose vs SwiftUI
https://ift.tt/2YuGvTn
July 03, 2019 at 04:15PM by julianlenz
https://ift.tt/2FNNvmM
QuickBird Studios Blog
SwiftUI vs. Jetpack Compose - QuickBird Studios Blog
Declarative UI Frameworks are on the rise. After third-party frameworks such as React Native, Litho and Component Kit, Apple and Google finally published their own solutions called Swift UI and Android's Jetpack Compose. Today, we will take a look at both…
New post on /r/flutterdev subreddit:
Trying out flutter for the first time and this is what I made. Looking for suggestions on how to lower the size of release .apk file as this simple app turns out to be of 7 Mb which is much larger than when Java is used.
https://ift.tt/2J7u4r7
July 03, 2019 at 04:48PM by mercury_new
https://ift.tt/2JmboD5
Trying out flutter for the first time and this is what I made. Looking for suggestions on how to lower the size of release .apk file as this simple app turns out to be of 7 Mb which is much larger than when Java is used.
https://ift.tt/2J7u4r7
July 03, 2019 at 04:48PM by mercury_new
https://ift.tt/2JmboD5
GitHub
hgayan7/CloudSpace
Cloud storage provider app made with flutter. Contribute to hgayan7/CloudSpace development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Pragmatic State Management Using Provider (The Boring Flutter Development Show, Ep. 25)
https://youtu.be/HrBiNHEqSYU
July 03, 2019 at 06:17PM by EngineerScientist
https://ift.tt/2LyLzCp
Pragmatic State Management Using Provider (The Boring Flutter Development Show, Ep. 25)
https://youtu.be/HrBiNHEqSYU
July 03, 2019 at 06:17PM by EngineerScientist
https://ift.tt/2LyLzCp
YouTube
Pragmatic State Management Using Provider (The Boring Flutter Development Show, Ep. 24)
In this episode, Filip and Matt go over the Provider package, a straightforward way to manage state in a Flutter app. Watch the pair swap out BLoC with Provider in the Hacker News Flutter app.
Provider Package → https://goo.gle/2YnDeVD
Pragmatic State Management…
Provider Package → https://goo.gle/2YnDeVD
Pragmatic State Management…
New tweet from FlutterDev:
In this episode of #TheBoringShow watch @mjohnsullivan and @filiphracek work with the Provider package, a straightforward way to manage state in Flutter.
You’ll see them swap out BLoC with Provider in the Hacker News Flutter app!
Check it out here → https://t.co/UgCa7Kbpwd pic.twitter.com/nyRwSzWUIA— Flutter (@FlutterDev) July 3, 2019
July 03, 2019 at 06:30PM
http://twitter.com/FlutterDev/status/1146456092454608896
In this episode of #TheBoringShow watch @mjohnsullivan and @filiphracek work with the Provider package, a straightforward way to manage state in Flutter.
You’ll see them swap out BLoC with Provider in the Hacker News Flutter app!
Check it out here → https://t.co/UgCa7Kbpwd pic.twitter.com/nyRwSzWUIA— Flutter (@FlutterDev) July 3, 2019
July 03, 2019 at 06:30PM
http://twitter.com/FlutterDev/status/1146456092454608896
Twitter
#theboringshow hashtag on Twitter
8m ago @FlutterDev tweeted: "💙 #TheBoringShow SDK tour 💙
This time.." - read what others are saying and join the conversation.
This time.." - read what others are saying and join the conversation.
New post on /r/flutterdev subreddit:
CodeCamp, release a new video with huge content for begginer in Flutter, hope you guys enjoy it
https://www.youtube.com/attribution_link?a=RlC_pS91Lrs&u=%2Fwatch%3Fv%3DpTJJsmejUOQ%26feature%3Dshare
July 03, 2019 at 07:32PM by Pelllegrini
https://ift.tt/329DREQ
CodeCamp, release a new video with huge content for begginer in Flutter, hope you guys enjoy it
https://www.youtube.com/attribution_link?a=RlC_pS91Lrs&u=%2Fwatch%3Fv%3DpTJJsmejUOQ%26feature%3Dshare
July 03, 2019 at 07:32PM by Pelllegrini
https://ift.tt/329DREQ
YouTube
Flutter Course - Full Tutorial for Beginners (Build iOS and Android Apps)
Learn Flutter, Google’s groundbreaking multi-platform mobile development framework to create apps for Android and iOS. In this course, Nick Manning from flut...