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

how to save a list of data to a variable in flutter dart , please help me im new to flutter
hi, var users = [ {id :3,name : adel,description: agent},{ id :4,name : anu,description: Manager,}, {id:5,name:arun,description:poen} ] here i want to save each json object save in separate variable ,so i can acess it easily, how to do that for (int i =0; i
New post on /r/flutterdev subreddit:

FlutterForce — Week 112
https://ift.tt/38FTCs2

March 14, 2021 at 12:04PM by flutterist
https://ift.tt/3eCFRxS
New post on /r/flutterdev subreddit:

Firebase & Flutter how to structure my data and how avoid high costs by checking if a username already exists
currenty when somebody registers in my app, im providing an Input field which returns if the entered username already exists in the database.
Future getUserName(String userNameFieldInput) { print('userNameFieldInput: $userNameFieldInput'); return FirebaseFirestore.instance .collection('usernames') .doc(userNameFieldInput) .get() .then((value) => value.exists ? true : false) .catchError((error) => print(error)); } 
Im returning true or false and thats totally fine. Im not sure if my database structure is fine for that. I would love to have some recommendations on here. Also how many reads do we have here? IM using the Firestore.
Collection: I-- usernames I I- marcel I I- tim I I------ USERID: true I I-- users I I-- USERID I I-- USERID I I-- name: marcel I I-- gender: male I I-- hobbys: snowboarding I 


March 14, 2021 at 12:01PM by md186
https://ift.tt/3bLYWvM
New post on /r/flutterdev subreddit:

What happened to that IDE made with Flutter?
I remember a while back (10-12 months?) someone was making an IDE with Flutter for Flutter.Does anyone know what happened to it? I don't think there had been any updates in a while.

March 14, 2021 at 12:36PM by mannprerak
https://ift.tt/3tn8jYV
Flutter Engage Extended Mumbai will take place on March 20, 2021, at 20:30 IST. We've invited Flutter experts from around the world to answer your questions and speak with you about various topics throughout this event.

More Details About Flutter Engage Extended Mumbai https://fluttermumbai.dev/#/

We will be Streaming on our Youtube Channel: https://www.youtube.com/FlutterMumbai

Use #AskFlutterMumbai to ask any questions related to new features and updates on Flutter!!

Hashtags and Tags for Flutter Engage Extended Mumbai:
#FlutterEngageMumbai #FlutterMumbai #Flutter
@MumbaiFlutter

Connect with Flutter Mumbai:
Twitter: https://www.twitter.com/MumbaiFlutter
Facebook: https://www.facebook.com/fluttermumbai
Meetup: https://www.meetup.com/Mumbai-Flutter
Telegram: https://t.me/FlutterMumbai
Instagram: https://www.instagram.com/mumbaiflutter/
LinkedIn: https://www.linkedin.com/company/fluttermumbai/
New post on /r/flutterdev subreddit:

How to add app introduction?
I want to add app introduction: I want to add pointing arrows to different widgets and show what they do the first time a user enters an app.

March 14, 2021 at 02:51PM by not-not-lazy-dev
https://ift.tt/3bMJ77W
New post on Flutter Dev Google group:

pub get failed flutter_polyline_points
Because every version of flutter_polyline_points depends on http ^0.12.0+2 and uber_app depends on http 0.13.0, flutter_polyline_points is forbidden. So, because uber_app depends on flutter_polyline_points ^0.2.4, version solving failed. pub get failed (1; So, because uber_app depends on flutter_p

March 14, 2021 at 03:54PM by Y Nguyen Dang
https://ift.tt/30Hduqb
New post on /r/flutterdev subreddit:

Flutter Desktop Skype Chat Box
https://ift.tt/30ImATO

March 14, 2021 at 03:38PM by tledrag
https://ift.tt/3eBUlhz
New post on /r/flutterdev subreddit:

What are the disadvantages of using only Packages in your Flutter App?
There are many good packages on pub dev, is it ok to use only packages to build a flutter app that can be published.Want to known your thoughts on this guys

March 14, 2021 at 03:19PM by Dhanraj_Flutterdev
https://ift.tt/3tjkINi
New post on /r/flutterdev subreddit:

New Flutter Flame Tutorials to Make Mobile Games
Flame is a 2D game framework for Flutter. It is on version 1.0.0-rc8.I've added two new tutorials to my series on FlameIntegrate Flutter Widgets into Flame Mobile Games - shows how easy it is to add Flutter icon buttons to Flame mobile app gamesFlame Audio in Flutter Mobile App Games - flame_audio is a separate package and not included in the base flame packageI also added a "What is Flame and Who is it For" video as an intro to the series.After I received some nice questions, I realized that people might not be familiar with Flame. Here are the basics.Flame is an open source 2D game engine for Flutter.Flame is for people who like Flutter and Dart.There's no real feature advantage using Flame over Unity or Phaser (JavaScript). The only advantage of Flame is that it is the Dart and Flutter workflow.Flame is moving to 1.0 and the documentation and many tutorials may be outdated. If you want to use the pre-release 1.0 Flame framework, these simple tutorials may help you dip your toe into Flame.Performance of Flame is good. Graphics and sprite animation are of the quality you would expect from Flutter apps, which is great IMO.I believe Flame does run on desktop and web in addition to mobile, but I only use Flame on mobileI am building these video tutorials as a hobby as I am sheltering-in-place in California and I enjoy the interaction with people online. Flame is good if you want to learn more about Flutter and Dart.Here are some benefits to learning Flame:As the site documentation is a bit outdated due to the transition to 1.0, you will need to read the source code of the Flame libraries with CTRL-CLICK when you are coding. This is actually a nice way to learn more about constructors which can go pretty deep with Dart.For the same reason as above, you will learn more about mixins and extensions, including ideas on how to write them yourselfif you are new to game development, learning about game development can help you understand and optimize other types of animations in Flutter business apps. This is not a direct connection, but if you understand updates and rendering more deeply, it may give you ideas to improve your business apps and make them more delightful or engaging.The Flame engine and components themselves are great, so if you power-through the sparse documentation problem, then building the app is gratifying because the actual game will be pleasant to use and beautiful.You can also put all those beautiful Flutter widgets into Flame. It feels great to have these pre-built components that just drop in with little effort.Hope everyone is trying to keep motivated and stay positive during COVID health restrictions. It's tough, but let's keep trying our best to improve things.

March 14, 2021 at 03:16PM by codetricity
https://ift.tt/3bMnWmC
New post on Flutter Dev Google group:

when concatenate null value to a string , it shows error how to solve this problem, please help
hi, i have getting the error when am concatenting two strings , how to solve this problem here below the error message shows in console "Unhandled Exception: Invalid argument(s) _StringBase.+ (dart:core-patch/string_patch.dart:267:57)" regards, navas jaseer

March 14, 2021 at 05:27PM by Navas jaseer
https://ift.tt/2OsYRUQ
New post on /r/flutterdev subreddit:

Flutter 2.0, shout out to the Flutter Team!!!
In my over 3 decades work as a developer I have never upgraded my development environment to a major upgrade in such a short period of time. Outstanding!!!I put aside the day to upgrade a large app I've spent the better part of a year working on. After 20 minutes of updating on pub, and 2 small code changes I ran flutter upgrade, and got nervous. I've been running tests for an hour, and now I'm going to play the rest of the day.Again, thank you Flutter Team!!!
PS: I spent 17 years on Delphi 7 because we could never upgrade our entire suite of apps to Delphi 8...10...

March 14, 2021 at 04:50PM by jrheisler
https://ift.tt/3eBCI1m
New post on Flutter Dev Google group:

Error: Could not find or load main class org.gradle.wrapper.GradleWrapperMain
Hello there, The flutter doctor -v output shows that there is no problem below, but when I say flutter run, I get a gradle error. flutter doctor -v (Terminal Output) [√] Flutter (Channel stable, 2.0.2, on Microsoft Windows [Version 10.0.19042.867], locale en-TR) Flutter version 2.0.2 at

March 14, 2021 at 07:44PM by Muti
https://ift.tt/3eDrLMP
New post on Flutter Dev Google group:

More Details about flutter documentation
Hello, I want more details about some properties, unfortunately, there are not much. For example, I can avail very minimal info about onPressed property here- https://ift.tt/3rLGyZG By this, I mean where can I get the whole expression goes

March 14, 2021 at 08:03PM by Neail
https://ift.tt/3tliRI6
New post on Flutter Dev Google group:

ERROR: Undefined name 'Matrix4'
This just popup up and I can't find any inform about the error online. "Undefined name 'Matrix4'. Try correcting the name to one that is defined, or defining the name. Any clues on how to solve?" iMac 27" and 16" MacBook Flutter: 1.22.6 and 2.0.2 VSCode: 1.54.2

March 14, 2021 at 08:47PM by jerry hamby
https://ift.tt/38BK3Ko
New post on /r/flutterdev subreddit:

Flutter app’s state in Isolate
There are many ways to manage state in Flutter, but most of them are built in such a way that all the logic is executed in the main isolate of your application. Execution of network requests, working with WebSocket, potentially heavy synchronous operations (like local search), all this, as a rule, is implemented in the main isolate. This article shows other doors as well.

March 14, 2021 at 11:13PM by bitter-cognac
https://ift.tt/3tlEgRs
New post on /r/flutterdev subreddit:

Cool to post this? Vytality Health seeking Flutter devs - remote
Company: Vytality HealthJob: Flutter/GraphQL Development InternType: Internship, Side-ProjectLocation: San Francisco, CaliforniaAllows remote: YesHello All, Vytality Health is looking for development interns who wants to build a healthcare social app & algorithms with us for the elder and patient-care space. We are a bootstrapped startup in San Francisco, CA developing an Flutter/GraphQL platform to help elders, patients, and caregivers connect to track their mental and physical well-being.Our ideal candidate is someone with basic knowledge of Dart, GraphQL & Flutter (such as a recent graduate) who is looking for real world startup experience, or an experienced developer looking for a break from artless commerce and willing to share a few hours a week to impact elders and patients' lives.Please visit our site at http://vytality.co, or PM me for more information.

March 14, 2021 at 11:01PM by _oracle-
https://ift.tt/3vnB1L0
New post on /r/flutterdev subreddit:

Best format to send List<String> over the internet(MQTT)?
I have a List<String> of words. I want to send and recieve the same over MQTT.What would be the best format I could use?I'm thinking of JSON but it doesn't look like it's the best way about it.Suggestions Please?

March 14, 2021 at 10:40PM by not-not-lazy-dev
https://ift.tt/3qPnoAC
New post on /r/flutterdev subreddit:

Full-stack development with Flutter/Dart?
Anyone has experience creating both back-end and front-end using Dart (and UI with Flutter)? Flutter + Firebase don't count.There're several back-end frameworks out there (Angel, Aqueduct, Shelf) - would be interested to see if someone actualy used them (or any other). Comparing of conventional frameworks you dealt with in the past(i.e .NET/ASP.NET, Java, PHP) to Flutter/Dart back-end experiences is appreacted.

March 14, 2021 at 10:05PM by medicince
https://ift.tt/3vnxWKW