Flutter Heroes
25.9K subscribers
272 photos
2 videos
31.1K links
Download Telegram
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
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
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
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
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
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
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
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
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
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
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
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
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
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
New post on /r/flutterdev subreddit:

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