Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on /r/flutterdev subreddit:

FlutterForce β€” Week 47
https://ift.tt/30V5TBT

October 06, 2019 at 10:49AM by flutterist
https://ift.tt/2LP6GQK
New post on /r/flutterdev subreddit:

Check out the 11th installment of #Flutter Discovery. This week's installment has Responsive UI, Permission Requests and Inner working of Flutter.
https://ift.tt/2oT8lvJ

October 05, 2019 at 02:53PM by DecimalSaxon
https://ift.tt/2MjN71V
New post on /r/flutterdev subreddit:

Verify that an asset (in a flutter plugin) is available in iOS
I have an app written in flutter and with native bindings on android (java) and iOS (objective-c).The app is build as a flutter plugin for the native layer bindings and this is then wrapped into a flutter app for UI etc.The flutter plugin requires a binary dynamic library, but I struggle to get it to load on iOS. I am however unsure if this is because the library asset (e.g. mylib.dylib) is included in the app or if the code for finding it is broken.Is there a way to verify that the library is actually included in the app when building it for iOS?Also is there a way to get it to list all assets with location so I can look through the list and verify that the location matches what I expect it to be?

October 07, 2019 at 08:37AM by kimusan
https://ift.tt/2Vkb5y8
New post on /r/flutterdev subreddit:

Flutter bitmap: bitmap manipulations package using the dart FFI
https://ift.tt/2obhBLK

October 07, 2019 at 11:20AM by renancaraujo
https://ift.tt/2nniqQX
New post on /r/flutterdev subreddit:

Using nested Scaffold, good/bad?
When having bottom navigation, the parent is a Scaffold. But almost always nested pages are Scaffold too.How good of a practice is it?

October 07, 2019 at 12:22PM by bananaofakind
https://ift.tt/2OtnBKm
New post on /r/flutterdev subreddit:

I created a zsh plugin to start iOS simulators from terminal
Since I started working with Flutter, I don't always have Xcode open. The usual way for me to start simulators was to just run an app in XCode with the selected device. Another way is to start from terminal, calling xcrun simctl list to get a device id from the list and do something like /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app/Contents/MacOS/Simulator -CurrentDeviceUDID <YOUR-DEVICE-ID>. Well, I was not happy with both of these tedious ways to start an iOS simulator, so i created a little script.With this script you can just type bootSimulator in terminal, and it will ask you which iOS version you want to run (if you have multiple iOS simulator versions installed). After selecting an iOS version you will get the list of available devices for that OS and you can select which device should boot!If you use plain bash, you can copy the code and probably just paste it in the ~/.bashrc file, the script is made in bash after all.I hope some people would get the same satisfaction I get from using this time saving script. Any feedback is always welcome!

October 07, 2019 at 12:46PM by Schroefdop
https://ift.tt/35fEVIA
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
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
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
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
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
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
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
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
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
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
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