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

Error: No named parameter with the name 'child'.
Hello there, I'm working on a flutter project. When I try to check the web part I get this error. Launching lib \ main.dart on Chrome in debug mode ... lib / dialogs / common_dialogs.dart: 146: 7: Error: No named parameter with the name 'child'. child: AlertDialog ( ^^\\\\\\\\\\\ '

March 13, 2021 at 02:56PM by Muti
https://ift.tt/3eyjRnZ
New post on /r/flutterdev subreddit:

Which would be faster to learn and implement for a python programmer: Flutter or Ionic
I only know python and I think I'm pretty decent at it. Given that, I want to make a mobile app. Ive broken down my options to Ionic or Flutter. If I go with Ionic I have to learn css/html/javascript. If I go with flutter I have to learn dart. Which option would be the faster for me to learn and implement an app given I'm coming from only python? Anyone with relevant experience that can provide insight here?

March 13, 2021 at 03:38PM by miamiredo
https://ift.tt/38AUXAk
New post on /r/flutterdev subreddit:

What are the limitation of Flutter 2 Desktop ?
I heard that Flutter Desktop don't support webview yet and also don't have a video playerWhat are the other limitations ?(Also tell about Web limitations )

March 13, 2021 at 06:58PM by RageshAntony
https://ift.tt/3vm6jly
New post on Flutter Dev Google group:

/flutter_localizations.dart'
Hello, I get an underlined error when I want to add "import 'package: flutter_localizations / flutter_localizations.dart';" in main.dart. error message: Target of URI doesn't exist: 'package: flutter_localizations / flutter_localizations.dart'. Try creating the file referenced by the URI, or

March 13, 2021 at 10:59PM by Muti
https://ift.tt/3csvGcv
New post on /r/flutterdev subreddit:

What is your state management preference
I've been trying out different state management tools for Flutter. For react projects I almost always go for redux, I could even say it's become standard for me and I assume for many people.I'm wondering how this is perceived for Flutter. What is your preference for state management and why? Also if your preference changes depending on context, would be nice to hear about it as well.

March 13, 2021 at 10:17PM by Agyieus
https://ift.tt/3crZ6Yl
New tweet from FlutterDev:

💙 Join us as we go live at #FlutterEngage India!

16 local communities in India will come together and host @filiphracek! Tune in to hear exciting #FlutterEngage announcements, updates on Flutter 2, demos and more!

Let's go 👉 https://t.co/qg7MTSqLBC pic.twitter.com/b6ksjGdJ2v— Flutter (@FlutterDev) March 14, 2021

March 14, 2021 at 04:59AM
http://twitter.com/FlutterDev/status/1370947742785286144
New post on /r/flutterdev subreddit:

The `json_helpers` contains functions that make it easier decoding JSON objects directly from strings, lists and maps.
https://pub.dev/packages/json_helpersAllows you to simplify decoding JSON objects directly from `String`, `List` and `Map` values (eg. from request body).```final list = '[{"name":"test1"},{"name":"test1"}]'.decodeJsonList((e) => Data.fromJson(e));print(list[0].name);​final data1 = '{"name":"test1"}'.decodeJson((e) => Data.fromJson(e));print(data1.name);​final data2 = {'name': 'test1'}.fromJson((e) => Data.fromJson(e));print(data2.name);```

March 14, 2021 at 07:51AM by andrew_mezoni
https://ift.tt/3qKwOxw
New post on /r/flutterdev subreddit:

Is there a Flutter State Management tool like Vue's Vuex?
I have worked with Provider and its great. I recently developed a Vue app and used Vuex for State management. It is awesome. I would love to know if there is any Flutter State Management tool like Vue's Vuex?Thanks

March 14, 2021 at 08:32AM by ravgeet
https://ift.tt/3ldiTyA
New post on /r/flutterdev subreddit:

What do you think are flutter's biggest drawbacks right now and do you think the flutter team will be able to solve them in the future?
I'm trying to get into mobile development and flutter seems to tick all the boxes. However, as a beginner, there might be drawbacks that I am not aware of right now and therefore want to hear your opinion on the matter.Thanks!

March 14, 2021 at 09:05AM by Dalcoy_96
https://ift.tt/30JMoi6
New post on /r/flutterdev subreddit:

Retrieve Data for a Leader board in flutter apps with firebase
Im breaking my head up with this question. I didn't find a good solution yet getting for example the top 10 rated movies of the day, of the week, of the month in a smart way from my firebase firestore.Does anybody already made experience with such leaderboard data in his app and has a nice approach how to retrieve that data in a nice way? This seems to be really rare if you do some research on that topic.Im very interested in your solutions!
Already tried something like this which isn't good since we have to do a lot sorting on client: 
QuerySnapshot snapshot = await FirebaseFirestore.instance.collection('tasks').where('dateWhenProofed', isGreaterThanOrEqualTo: 1).orderBy('dateWhenProofed', descending: true).limit(10).get(); snapshot.docs.forEach((document) {Data data = Data.fromJson(document.data());_rankingResult.add(data);_rankingResult.sort((a, b) => b.rating.compareTo(a.rating)); });Everything I tried ends up isn't fine yet or ends up in limitations.

March 14, 2021 at 10:16AM by md186
https://ift.tt/2PWHcoV
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