New post on /r/flutterdev subreddit:
Add Flutter to existing Android/iOS app
https://medium.com/flutter-community/add-flutter-to-existing-android-ios-app-ae8c4fb1582e
June 29, 2019 at 04:17AM by neurenor
https://ift.tt/2XCOxfv
Add Flutter to existing Android/iOS app
https://medium.com/flutter-community/add-flutter-to-existing-android-ios-app-ae8c4fb1582e
June 29, 2019 at 04:17AM by neurenor
https://ift.tt/2XCOxfv
Medium
Add Flutter to existing Android/iOS app
Last year, on 4th Dec 2018, Google announced Flutter 1.0. Since then Flutter has gained a lot of momentum. If you have not explored…
New post on /r/flutterdev subreddit:
Add Flutter to existing Android/iOS app
https://ift.tt/2KNTCfd
June 29, 2019 at 05:01AM by neurenor
https://ift.tt/2FGBuj2
Add Flutter to existing Android/iOS app
https://ift.tt/2KNTCfd
June 29, 2019 at 05:01AM by neurenor
https://ift.tt/2FGBuj2
New post on /r/flutterdev subreddit:
Facebook vs Google: The Battle of Their Cross-Platform Frameworks
https://ift.tt/2RIZ6Iy
June 29, 2019 at 04:41AM by EngineerScientist
https://ift.tt/2Yh0CnQ
Facebook vs Google: The Battle of Their Cross-Platform Frameworks
https://ift.tt/2RIZ6Iy
June 29, 2019 at 04:41AM by EngineerScientist
https://ift.tt/2Yh0CnQ
Medium
Facebook vs Google: The Battle of Their Cross-Platform Frameworks
Google’s ongoing battle of Flutter and Facebook’s React Native are narrowing the holes between hybrid and native applications.
New post on Flutter Dev Google group:
Best Map widget?
Googled for map view widgets for Flutter, but didn't come up with a concrete answer. I'd like to be able to use Apple Maps on iOS and Google Maps on Android if I could. What's the best option to use right now?
June 29, 2019 at 06:33AM by Eric Knudstrup
https://ift.tt/2XbNorg
Best Map widget?
Googled for map view widgets for Flutter, but didn't come up with a concrete answer. I'd like to be able to use Apple Maps on iOS and Google Maps on Android if I could. What's the best option to use right now?
June 29, 2019 at 06:33AM by Eric Knudstrup
https://ift.tt/2XbNorg
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:
A guide to Flutter Semantics
https://ift.tt/2X5D1Fi
June 29, 2019 at 10:49AM by EngineerScientist
https://ift.tt/2IXyb9g
A guide to Flutter Semantics
https://ift.tt/2X5D1Fi
June 29, 2019 at 10:49AM by EngineerScientist
https://ift.tt/2IXyb9g
kpsroka.dev
A guide to Flutter Semantics | Krzysztof Sroka — Software madman
Accessibility in the Flutter SDK
New post on Flutter Dev Google group:
How to fix Unhandled Exception: type 'Future' is not a subtype of type 'Future'
I need to get all the data from the firestore database. Future getPhotography() { Future data = db.collection('photography') .document('0yUc5QBGHNNq6WK9CyyF') .setData(jsonDecode(jsonEncode(Photography()))); return data; }
June 29, 2019 at 02:09PM by Bhanuka Isuru
https://ift.tt/2Njtzys
How to fix Unhandled Exception: type 'Future' is not a subtype of type 'Future'
I need to get all the data from the firestore database. Future getPhotography() { Future data = db.collection('photography') .document('0yUc5QBGHNNq6WK9CyyF') .setData(jsonDecode(jsonEncode(Photography()))); return data; }
June 29, 2019 at 02:09PM by Bhanuka Isuru
https://ift.tt/2Njtzys
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:
[Android dev here] Typography & Custom Icons: how to deal with them?
Coming from iOS and Android development, the major pain points in Flutter for me has been the simple stuff.With Typography, the documentation is chaotic (https://api.flutter.dev/flutter/material/Typography-class.html). Material Design in 2018 revamped all the themes, but Flutter kept the one from 2014 and included a workaround method to convert to 2018. That, however, only converts the theme and not the method names. So I have to guess display1 means H6 and things like this. This really frustrates me because it's an additional step when translating apps from other platforms to Flutter. Why should I understand two design languages, the one from 2014 that I completely forgot already and the new one from 2018? Android did the migration. iOS did the migration. Why can't Flutter deprecate the 2014 Typography and include the 2018 with 2018 correct names by default in new projects?With Custom Icons, iOS has pdfs, Android has vector drawables, Flutter has.. fonts? Seriously, is there no other or even better way to deal with them? I saw some SVG libraries, but there is no word on how optimized they are and they don't output to IconData. Should I really spend time building fonts every time I want to include a new one in Flutter?Bonus: it is so weird to fetch an image from the web. Starts as Image.Network(), but then you want to retry if network is unavailable, then you want to cache it, then you want a placeholder. And suddenly you got a snowball method. There is a different method for each of those. Should I just use the Advanced Image Loader for every scenario? I'm used to Glide on Android, it automatically takes care of cache, retry and placeholders.I know some more experienced developers and some people from the Flutter team follow this sub, so I hope you can give me some light.
June 29, 2019 at 04:30PM by bernaferrari
https://ift.tt/31ZVre9
[Android dev here] Typography & Custom Icons: how to deal with them?
Coming from iOS and Android development, the major pain points in Flutter for me has been the simple stuff.With Typography, the documentation is chaotic (https://api.flutter.dev/flutter/material/Typography-class.html). Material Design in 2018 revamped all the themes, but Flutter kept the one from 2014 and included a workaround method to convert to 2018. That, however, only converts the theme and not the method names. So I have to guess display1 means H6 and things like this. This really frustrates me because it's an additional step when translating apps from other platforms to Flutter. Why should I understand two design languages, the one from 2014 that I completely forgot already and the new one from 2018? Android did the migration. iOS did the migration. Why can't Flutter deprecate the 2014 Typography and include the 2018 with 2018 correct names by default in new projects?With Custom Icons, iOS has pdfs, Android has vector drawables, Flutter has.. fonts? Seriously, is there no other or even better way to deal with them? I saw some SVG libraries, but there is no word on how optimized they are and they don't output to IconData. Should I really spend time building fonts every time I want to include a new one in Flutter?Bonus: it is so weird to fetch an image from the web. Starts as Image.Network(), but then you want to retry if network is unavailable, then you want to cache it, then you want a placeholder. And suddenly you got a snowball method. There is a different method for each of those. Should I just use the Advanced Image Loader for every scenario? I'm used to Glide on Android, it automatically takes care of cache, retry and placeholders.I know some more experienced developers and some people from the Flutter team follow this sub, so I hope you can give me some light.
June 29, 2019 at 04:30PM by bernaferrari
https://ift.tt/31ZVre9
api.flutter.dev
Typography class - material library - Dart API
API docs for the Typography class from the material library, for the Dart programming language.
New post on Flutter Dev Google group:
Fauzi2865
Not send my gmail what u want u can stop send gmail
June 29, 2019 at 06:04PM by Muhd Fauzi
https://ift.tt/2KPHGcD
Fauzi2865
Not send my gmail what u want u can stop send gmail
June 29, 2019 at 06:04PM by Muhd Fauzi
https://ift.tt/2KPHGcD
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:
Firestore Nested StreamBuilders
In my Flutter app, will it count as two reads from Firestore if I have two nested StreamBuilders reading from the same document? Or is it cached in a way that it will only count as one read?Here's an example of what I'm talking about.StreamBuilder(stream: Firestore.instance.document(path).snapshots(),builder: (context, asnap){//Some nested widgets...return StreamBuilder(stream: Firestore.instance.document(path).snapshots(),builder: (context, asnap){return MyWidget();},);},);
June 29, 2019 at 05:58PM by jajabobo
https://ift.tt/2Jc2DLW
Firestore Nested StreamBuilders
In my Flutter app, will it count as two reads from Firestore if I have two nested StreamBuilders reading from the same document? Or is it cached in a way that it will only count as one read?Here's an example of what I'm talking about.StreamBuilder(stream: Firestore.instance.document(path).snapshots(),builder: (context, asnap){//Some nested widgets...return StreamBuilder(stream: Firestore.instance.document(path).snapshots(),builder: (context, asnap){return MyWidget();},);},);
June 29, 2019 at 05:58PM by jajabobo
https://ift.tt/2Jc2DLW
reddit
r/FlutterDev - Firestore Nested StreamBuilders
0 votes and 1 comment so far on Reddit
New post on /r/flutterdev subreddit:
What is everyone working on?
Tell me about your flutter projects!
June 29, 2019 at 08:13PM by AIDXN3
https://ift.tt/2YliZId
What is everyone working on?
Tell me about your flutter projects!
June 29, 2019 at 08:13PM by AIDXN3
https://ift.tt/2YliZId
reddit
r/FlutterDev - What is everyone working on?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Flutter Turkish telegram group opened.
https://t.me/Fluttertr
June 29, 2019 at 08:27PM by fl1sh
https://ift.tt/2KO03Pu
Flutter Turkish telegram group opened.
https://t.me/Fluttertr
June 29, 2019 at 08:27PM by fl1sh
https://ift.tt/2KO03Pu
Telegram
Flutter Türkiye 🇹🇷
Flutter Türkiye Resmi Telegram Grubu
Grup Kuralları : https://t.me/fluttertr/4663
Telegram Kanalımız: @FlutterTurk
Twitter: https://twitter.com/Flutter_Turkiye
Slack: https://bit.ly/flutterTR
Kommunity: https://kommunity.com/flutter-turkiye
Grup Kuralları : https://t.me/fluttertr/4663
Telegram Kanalımız: @FlutterTurk
Twitter: https://twitter.com/Flutter_Turkiye
Slack: https://bit.ly/flutterTR
Kommunity: https://kommunity.com/flutter-turkiye
New post on /r/flutterdev subreddit:
PageView + Text Overflow (like Kindle reader app)
I've got a big blob of book text i'm putting into a PageView w/ horizontal scrolling.I'd like my text to overflow from one page to the next in word-chunks much like the Kindle app's does.I can't however seem to get it to work!Things i've tried include: ...building a page word-by-word while detecting overflow each step using a TextPainter ...building a page word-by-word while detecting overflow each step using a ParagraphBuilder/ParagraphIs there some option i'm missing? Did i make things overly complicated?
June 29, 2019 at 10:57PM by viperld
https://ift.tt/2LrmBF9
PageView + Text Overflow (like Kindle reader app)
I've got a big blob of book text i'm putting into a PageView w/ horizontal scrolling.I'd like my text to overflow from one page to the next in word-chunks much like the Kindle app's does.I can't however seem to get it to work!Things i've tried include: ...building a page word-by-word while detecting overflow each step using a TextPainter ...building a page word-by-word while detecting overflow each step using a ParagraphBuilder/ParagraphIs there some option i'm missing? Did i make things overly complicated?
June 29, 2019 at 10:57PM by viperld
https://ift.tt/2LrmBF9
reddit
r/FlutterDev - PageView + Text Overflow (like Kindle reader app)
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Chopper (Retrofit for Flutter) - Interceptors
https://youtu.be/ViqtHHLfN94
June 30, 2019 at 12:13AM by MRresoMC
https://ift.tt/2FBtK1V
Chopper (Retrofit for Flutter) - Interceptors
https://youtu.be/ViqtHHLfN94
June 30, 2019 at 12:13AM by MRresoMC
https://ift.tt/2FBtK1V
YouTube
Chopper (Retrofit for Flutter) - #2 Interceptors - Dart HTTP Client Generator Tutorial
📗 Learn from the written tutorial & GET THE CODE 👇👇
https://resocoder.com/flutter-chopper-interceptors
👨💻 Do you write good code? Find out now 👇
https://resocoder.com/good-code-quiz
Having conquered the basics of Chopper, such as making HTTP requests,…
https://resocoder.com/flutter-chopper-interceptors
👨💻 Do you write good code? Find out now 👇
https://resocoder.com/good-code-quiz
Having conquered the basics of Chopper, such as making HTTP requests,…
New post on /r/flutterdev subreddit:
Code generation in Flutter
https://ift.tt/2RNNSTs
June 29, 2019 at 11:53PM by Purple_Pizzazz
https://ift.tt/2xnEbS0
Code generation in Flutter
https://ift.tt/2RNNSTs
June 29, 2019 at 11:53PM by Purple_Pizzazz
https://ift.tt/2xnEbS0
GitHub
flutter/flutter
Flutter makes it easy and fast to build beautiful mobile apps. - flutter/flutter
New post on /r/flutterdev subreddit:
Change App Bar in Flutter with Animation
https://ift.tt/2FIBsHt
June 30, 2019 at 01:12AM by Elixane
https://ift.tt/2YmwEim
Change App Bar in Flutter with Animation
https://ift.tt/2FIBsHt
June 30, 2019 at 01:12AM by Elixane
https://ift.tt/2YmwEim
Medium
Change App Bar in Flutter with Animation
Flutter App bar transitioning with Search Bar through a ripple animation.
New post on /r/flutterdev subreddit:
Are there Windows/web templates?
Hi,I was wondering if there are multi-platform Flutter templates that include Windows and web heads?Thank you!
June 30, 2019 at 01:54AM by weitzhandler
https://ift.tt/2Xm8E2A
Are there Windows/web templates?
Hi,I was wondering if there are multi-platform Flutter templates that include Windows and web heads?Thank you!
June 30, 2019 at 01:54AM by weitzhandler
https://ift.tt/2Xm8E2A
reddit
r/FlutterDev - Are there Windows/web templates?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Apple HealthKit to get workouts and heart rate for workouts
I am very green when it comes to swift and working HealthKit. I have looked a few plugins already but they are out of data. Would anyone be willing to help me to write a plugin that would get workouts and the heart rates during that workout? I have been able to see all the data I need in Swift, I am just too knew to it in order to return the proper data.Thanks in advance!
June 30, 2019 at 03:04AM by ngrunks
https://ift.tt/2JbGNIi
Apple HealthKit to get workouts and heart rate for workouts
I am very green when it comes to swift and working HealthKit. I have looked a few plugins already but they are out of data. Would anyone be willing to help me to write a plugin that would get workouts and the heart rates during that workout? I have been able to see all the data I need in Swift, I am just too knew to it in order to return the proper data.Thanks in advance!
June 30, 2019 at 03:04AM by ngrunks
https://ift.tt/2JbGNIi
reddit
r/FlutterDev - Apple HealthKit to get workouts and heart rate for workouts
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Just published an autogenerated client for Google Photos
https://ift.tt/2KKrTfj
June 30, 2019 at 03:01AM by VerTiGo_Etrex
https://ift.tt/2Yq2meA
Just published an autogenerated client for Google Photos
https://ift.tt/2KKrTfj
June 30, 2019 at 03:01AM by VerTiGo_Etrex
https://ift.tt/2Yq2meA
Dart packages
google_photos | Dart Package
Autogenerated Google Photos API client. Use this package to access the Google Photos REST API.
New post on Flutter Dev Google group:
Checking for the existence of another app
Hi! I'm wondering if it is possible to check for the existence of another application. I'd like to create a "Key" app that unlocks features in a "free" app all using flutter. Does anyone have any experience or thoughts about how to accomplish this? Thanks!! Jeff
June 30, 2019 at 05:33AM by jeff giesbrecht
https://ift.tt/2FJ4CpX
Checking for the existence of another app
Hi! I'm wondering if it is possible to check for the existence of another application. I'd like to create a "Key" app that unlocks features in a "free" app all using flutter. Does anyone have any experience or thoughts about how to accomplish this? Thanks!! Jeff
June 30, 2019 at 05:33AM by jeff giesbrecht
https://ift.tt/2FJ4CpX
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:
geopattern: geometric patterns for flutter
Port of https://github.com/jasonlong/geo_pattern using
<img src="https://github.com/suyash/geopattern/blob/master/example/images/squares.png?raw=true" height="450" />
<img src="https://ift.tt/2KO2Rfs" height="450" />
<img src="https://ift.tt/2RKdtwc" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/concentric\_circles.png?raw=true" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/overlapping\_circles.png?raw=true" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/overlapping\_rings.png?raw=true" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/nested\_squares.png?raw=true" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/mosaic\_squares.png?raw=true" height="450" />
<img src="https://ift.tt/2KNzbyR" height="450" />
<img src="https://ift.tt/2RIV1nX" height="450" />
<img src="https://ift.tt/2KNFiTL" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/plus\_signs.png?raw=true" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/triangles.png?raw=true" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/sine\_waves.png?raw=true" height="450" />
</div>
June 30, 2019 at 06:48AM by suyash93
https://ift.tt/2RKdeBF
geopattern: geometric patterns for flutter
Port of https://github.com/jasonlong/geo_pattern using
CustomPainter
widgets.Some examples<div><img src="https://github.com/suyash/geopattern/blob/master/example/images/squares.png?raw=true" height="450" />
<img src="https://ift.tt/2KO2Rfs" height="450" />
<img src="https://ift.tt/2RKdtwc" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/concentric\_circles.png?raw=true" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/overlapping\_circles.png?raw=true" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/overlapping\_rings.png?raw=true" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/nested\_squares.png?raw=true" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/mosaic\_squares.png?raw=true" height="450" />
<img src="https://ift.tt/2KNzbyR" height="450" />
<img src="https://ift.tt/2RIV1nX" height="450" />
<img src="https://ift.tt/2KNFiTL" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/plus\_signs.png?raw=true" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/triangles.png?raw=true" height="450" />
<img src="https://github.com/suyash/geopattern/blob/master/example/images/sine\_waves.png?raw=true" height="450" />
</div>
June 30, 2019 at 06:48AM by suyash93
https://ift.tt/2RKdeBF
GitHub
GitHub - jasonlong/geo_pattern: Create beautiful generative geometric background images from a string.
Create beautiful generative geometric background images from a string. - jasonlong/geo_pattern