Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on Flutter Dev Google group:

local_auth example failing
Hi all, I'm running the example for fingerprint and facial ID on two Android phones that support it which use, but it just crashes. Anyone else see this? I'll post the crash details. Thanks.

May 26, 2020 at 08:06PM by Gavin Henry
https://ift.tt/3gzptgm
New post on /r/flutterdev subreddit:

Complete Guide's To Flutter(App 14: Flutter Firebase Quotes App)
​This App is basically created to learn about widgets like Expanded etc. The plugins used are mentioned below pls have a look at it.​cloud_firestore: ^0.13.6flutter_screenutil: ^1.1.0random_color: ^1.0.5google_fonts: ^1.1.0​Features need to be implemented further are as follows:UI/UX DesignGoogle Fonts should be more creative and nice.​If anyone wants to take a look and give some feedback about the app/the code, it would be really nice :). Pls star and fork the main repo, if you will find it interesting, I will create more advanced apps in the future. Thanks, r/FlutterDev for helping me learning about Flutter in a faster manner.​I had referred Techie Blossom's Youtube Channel.​Source Code of this particular Project can be found with proper documentation, coding, testing on GitHub: https://github.com/irahulcse/Flutter_Quotes_App_Firebase​Main Repo with all my Flutter Apps till date including this one is:https://github.com/irahulcse/A-Complete-Guide-To-Flutter#014---flutter-firebase-quotes-app

May 26, 2020 at 07:52PM by flutterboxinc
https://ift.tt/3c6icRs
New tweet from FlutterDev:

✏️Take the Q2 survey and let us know what you think!

Tell us about your experience with various aspects of Flutter, and your answers will be used to make improvements. Survey closes May 30th, 2020.

💙On behalf of the Flutter team, thank you!

Survey → https://t.co/9WOiVaFMTU pic.twitter.com/4jvJbekgIB— Flutter (@FlutterDev) May 26, 2020

May 26, 2020 at 10:17PM
http://twitter.com/FlutterDev/status/1265376500716498944
New post on /r/flutterdev subreddit:

[Flutter] Overwatch: Digital Cookbook
Hello community,as a side project I have decided to make digital version of overwatch cookbook because it's much easier to look for your favourite hero recipe using the phone if the book is not around.I have created it for my own purpose but then I decided that people might like it and want to use it so I shared with the overwatch community here, I hope its the right place (fingerscrossed).Happy to hear some feedback if you download it :)Link to the app: Overwatch: Digital Cookbook

May 26, 2020 at 10:11PM by XaKeRaaa
https://ift.tt/2Xuftw0
New post on Flutter Dev Google group:

Using bloc/rxdart(combineLatest) how can I use a checkbox?
So I want to use this in a page: Checkbox( activeColor: Color(0xFF4A41AE), value:false , onChanged: ( bool value) { }, ) Im using rxdart and I have this in my bloc :

May 26, 2020 at 11:30PM by Tililweet
https://ift.tt/2X5jaJO
New post on /r/flutterdev subreddit:

SQLite or MySQL ?
So I'm wondering, If I have a Web Application with data stored in MySQL database. Then I make a Mobile App version of that Web Application. Should I create an SQLite db that stores single user data in it instead of calling the API for the data every time ?If I do create an SQLite database, then the data will exist in 2 database. MySQL and SQLite. What's the best approach for this ?P/S: I'm still a junior programmer so please don't hesitate to comment your opinions. It will greatly help me.

May 27, 2020 at 12:18AM by Ashraf_k
https://ift.tt/3elJgxH
New post on Flutter Dev Google group:

Placing two Firestore.instances inside an initState()
Now this maybe good practice or a complete no no!! I was trying to not nest more StreamBuilder(s) and tried to use initState() instead. The String _leaseTenantName (first Firestore.instance) would have correct value but Strings _leaseUnitName & _leaseUnitPropertyUid initially would return as

May 27, 2020 at 01:16AM by Stephen Thoms
https://ift.tt/2yFjdCE
New post on Flutter Dev Google group:

Flutter SDK
Hello, I'm using latest version of Android Studio and Flutter on a mac. I have a slight problem with Flutter SDK. I think I have SDK in the right path, but when I check build.gradle file it states '*Flutter SDK not found* !' I've checked local.properties and its in the same path as when I run

May 27, 2020 at 02:33AM by CSM Security Locksmiths
https://ift.tt/36wttcR
New post on Flutter Dev Google group:

flutter run test/widget_test.dart with filter by name (--plain-name)
Widget tests can be run on a device using flutter run test/widget_test.dart which is very helpful for debugging tests. However, if I have a widget_test.dart file with many tests I would like to be able to debug a single test in this way. I can run single tests or a group using flutter test

May 27, 2020 at 03:52AM by Alex Bhandari
https://ift.tt/3d71vH9
New post on Flutter Dev Google group:

Новый обучаюший ресурс по Flutter
Всем привет. Приглашаю всех на обучающие уроки openflutter.ru . Есть gitlab репозиторий, youtube канал и группы в соц сетях. Кому интересна разработка на Flutter - welcome.

May 27, 2020 at 08:19AM by Anton Nadtoka
https://ift.tt/2X5hmjO
New post on Flutter Dev Google group:

Pagination
How does pagination work? Can someone explain to me what you can use it for and recommend a good manual?

May 27, 2020 at 08:33AM by Marlene Rahm
https://ift.tt/2ZHyaz4
New post on Flutter Dev Google group:

Rewriting core builder for datatables
Hello , I have a app which utilities tables for showing data . Since the current datatable preloads all data which causes performance issues , is there a way we can make modification to core itembuilder to genereate rows and columns on demand . This will increase its performance . Currently

May 27, 2020 at 09:49AM by Nikesh Bhansali
https://ift.tt/36wHGX2
New post on Flutter Dev Google group:

Building libraries with Flutter for iOS is very painful
We created a Flutter app we need to provide to other developers for inclusion in their apps as a library. Those developers must not have to know anything about Flutter and it would be best, if our use of Flutter would be an implementation detail I do not have to reveal. For Android, this works

May 27, 2020 at 10:29AM by Stefan Matthias Aust
https://ift.tt/2AYvtia
New post on /r/flutterdev subreddit:

Game development with Widgets?
Hello, I have started developing a game in flutter. I started building menus and it's really exciting how good Dart is to write code and how easy it is to control the widgets in the screen exactly how you want it to look.When I started drawing the "game arena" which is basically a bunch of walls (think of something like a bomberman's arena), I did that with widgets (Container's to be specific). One Container represents what would be a "wall" on bomberman (at index i,j in the matrix).So far, the walls are just a red square and I'm thinking if once I've changed that to sprites and add animations, will it still have the necessary performance? I honestly don't know a lot about flutter and this game is what I chose to make my way into the framework.I could use something like the "flame" engine instead of the widgets but I really like how good it feels to only use the widgets.My question to someone with more experience in Flutter: If I do a write a very optimized code with some reasonable arena sizes (maybe 30x50), will my widgets be enough or should I change to canvas use flame?

May 27, 2020 at 11:10AM by ihateoldmovies
https://ift.tt/3eiCOYc
New post on /r/flutterdev subreddit:

flutter_blobs - Generate beautiful blob shapes
https://ift.tt/2ZD0qTz

May 27, 2020 at 12:15PM by lokesh000
https://ift.tt/3c6syAT