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

Calculating angular rotation from Sensors Package Gyroscope
Hello, I have been trying fruitlessly to determine the angular rotation of a device along the z-axis (yaw) when the device is placed on a flat surface. This would be if the device is placed flat on the ground, table, etc. I believe this should be possible with the Sensors package. Thank you for

May 13, 2021 at 07:54PM by Dino Bossi
https://ift.tt/3om24TW
New post on /r/flutterdev subreddit:

Flutter with Firebase Build a Store app from scratch - free course from udemy
https://ift.tt/3uXXP36

May 13, 2021 at 11:27PM by Ordinary_Craft
https://ift.tt/3tLpGCj
New post on /r/flutterdev subreddit:

Text Editing widget Or Text Editor for Desktop Apps
Is there any Desktop Code Editing widget or big Text Editor open source project in works ?
i don't know why i didn't find any

May 14, 2021 at 04:46AM by Airbus5717
https://ift.tt/3uMFLsV
New post on /r/flutterdev subreddit:

[NEWBIE] How bad is the iOS jank?
Recently I’ve been looking into developing an app as a side hustle. I’ve been interested in Flutter for some time now predominantly as a way for a one man band like myself to get an app on multiple platforms, however one thing I keep seeing is the mention of “iOS jank” I’ve seen some videos and it does look a bit awful.Have you experienced this? How bad is this jank issue? Has there been any news on fixes?I don’t want this to steer me away from using Flutter/FlutterFlow however iOS is where I would say majority of my user base would be and I’m now a little cautious.

May 14, 2021 at 04:10AM by dualnote
https://ift.tt/3w2cXgc
New post on /r/flutterdev subreddit:

Best Flutter Plugins and Tools for Android Studio of 2021
As a Flutter You cant afford to miss these Plugins and Tools for Flutter Development in 2021!https://hubpages.com/technology/Check-out-The-Best-Flutter-Plugins-and-Tools-for-Android-Studio

May 14, 2021 at 06:01AM by alexisgilburt
https://ift.tt/3ybDQQv
New post on /r/flutterdev subreddit:

Hi can I do ios development using flutter without any of apple devices?
I have found virtual machine can be used but there seems to be some downside to it. Do any of you practice the same?

May 14, 2021 at 05:56AM by shubh_420
https://ift.tt/3brAaAx
New post on /r/flutterdev subreddit:

Why can't compiler add 'const' even though Linter knows where it should be?
Recently I found out that an IDE doesn't warn about all problems with project and one should almost always also use Linter.When I added a Linter file, it went places and shown more than 600 of hints, most of which are of the next sort:
Replace ... SizedBox(width: 8), ... with ... const SizedBox(width: 8), 
To my sorrow dart fix --aply doesn't add the const keyword, so I have to fix those 600 hints manually spending a couple of hours.​But then, if Linter was able to find all the places which should have const in the sake of performance, why doesn't the compiler add those const keywords everywhere on its own?Why does a developer have to add a ton of small boilerplate keywords obscuring the code when it's so obvious for Linter where the keywords should be?

May 14, 2021 at 10:02AM by submergedmole
https://ift.tt/3ogx5Zk
New post on /r/flutterdev subreddit:

Non programmer learning flutter/dart as first language
Hi I not developer I have no prior knowledge in programming I came across flutter/dart which really impressed me. I was wondering if this is a good place to start learn programming?

May 14, 2021 at 09:28AM by Doo_scooby
https://ift.tt/3tFY8hK
New post on Flutter Dev Google group:

Local storage
Hello all, what Flutter package would you recommend to store user's data locally? Sqflite, Moor or something else?

May 14, 2021 at 10:09AM by Steepe Hare
https://ift.tt/3w3YiRF
New post on /r/flutterdev subreddit:

Intermediate: How to integrate Huawei kits (IAP, Crash Service) into learning app (Flutter)
/r/HMSCore/comments/mzm4xx/intermediate_how_to_integrate_huawei_kits_iap/

May 14, 2021 at 11:06AM by ooWYXNoo
https://ift.tt/2RQsvEX
New post on /r/flutterdev subreddit:

When do I need to use routes and onGeneratedRoute?
I'm learning about routes in flutter and there are two kinds of routes, which are onGeneratedRoute and Routes. When I used it, I don't see any difference between those two. Are there any use cases that we need to use Routes instead of onGeneratedRoute or vice versa?

May 14, 2021 at 10:47AM by Ok-Communication4709
https://ift.tt/3howX8y
New post on Flutter Dev Google group:

flutter
hi i am arun i dont know what are u asking but i have a small prob i am facing i dont know how to reach the flutter team member so i am asking u i want to use silverappbar and bottom navigation bar the code didnt show any error but while running it shows a exception that follows bellow

May 14, 2021 at 01:19PM by ARUN VIJAY
https://ift.tt/3uMcC12
New post on /r/flutterdev subreddit:

Released nordigen_integration Package, for easy Nordigen EU PSD2 AISP API Integration in your Dart/Flutter projects, with relevant Data Models. Currently supports Nordigen's Account Information API. Do check it out and give me some feedback.
https://ift.tt/3y5ntVM

May 14, 2021 at 02:03PM by Dhim13
https://ift.tt/3w8RxxM
New post on /r/flutterdev subreddit:

App Feedback Thread - May 14, 2021
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods

May 14, 2021 at 03:00PM by AutoModerator
https://ift.tt/3eMffKt
New post on /r/flutterdev subreddit:

Why does a ListView need a Center around it for width?
Hi.Getting the hang of Flutter at last but some things still do seem kinda random.I had a ListView like below:​Widget build(BuildContext context) {return Padding(child: Container(constraints: BoxConstraints(maxWidth: 500),child: ListView(children: buildList(data), //returns a list of Cards),),);}Problem was, the ListView seemed to completely ignore the maxWidth constraint in its parent. The Cards inside the list would happily stretch for the entire width of the screen way beyond the 500 limitation. I spent a couple of hours wrapping the listView and its children with various SizedBoxes, ConstrainedBoxes, Containers etc, but nothing seemed to affect the width of the ListView - it'd just stay full screen wide along with all children.Finally I discovered that wrapping the ListView with a Center widget does allow it to stay within constraints.TL;DR ListView ignored all constraints and stretched 100% screen width unless it was put inside a Center widget.Why?

May 14, 2021 at 03:43PM by HeftyImplement
https://ift.tt/2SLIgxn
New post on Flutter Dev Google group:

Success Debug Apk built with Codemagic does not work with Firebase
I have successfully created a debug build with Codemagic of an Android Flutter app that uses Firebase Google Sign-In and Cloud Firestore. Im only working with Android (not IOS). The google-services.json from Firebase is used in the build of the apk with Codemagic. Im not publishing, only

May 14, 2021 at 04:46PM by Luis Barqueira
https://ift.tt/3eO8XtK
New post on /r/flutterdev subreddit:

Rid: Integrate Rust into your Dart or Flutter app simply by annotating it.
https://ift.tt/3tNZ2bS

May 14, 2021 at 05:07PM by thlorenz
https://ift.tt/3oo6nOr