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

Value of Share Preference is not showing
// when I hot restart the app the value will erase automatically import 'package:flutter/foundation.dart'; import 'package:shared_preferences/shared_preferences.dart'; class UserDetails extends ChangeNotifier { String name = "Random"; UserDetails() { returnvalue(); } _initprefs()

July 07, 2020 at 05:06PM by Aayush Bhattarai
https://ift.tt/3iDyvtI
New post on Flutter Dev Google group:

How can I update a value of a map entry in an array in firebase?
Hi all, so I want to update the map entry of the circled element to another number: [image: exmaple10.png] This is what I got so far: var val = []; val.add(groupUID); var userInviteUID; await users .document(uid) .get() .then((value) => userInviteUID = value.data['inv

July 07, 2020 at 06:13PM by Tililweet
https://ift.tt/31Vl5n0
New post on /r/flutterdev subreddit:

Flutter Memory Practice App - Memorandom
Flutter Memory Practice app hasSudokuColors & WordsMemoryBoxparts. You can check screenshots here , or watch captured simulator video hereSource Code : https://github.com/DrAchernar/Memorandom-flutterYou can change and try different ideas on it. Good luck...

July 07, 2020 at 07:01PM by DrAchernar
https://ift.tt/2Z8CCpT
New post on /r/flutterdev subreddit:

Allow access to macOS applications using Flutter
I am trying to build a desktop application that will have access to all macOS applications and key chain access. How do I achieve? Any response is appreciated.Thanks in advance.

July 07, 2020 at 06:39PM by pramish_luitel
https://ift.tt/2ABkcEH
New post on Flutter Dev Google group:

Flutter App
Really, am from Somalia i want to make an election App in my country and i want everybody can vote his/her phone just using thump and eye sensor to differentiate people so does flutter framework has thump sensor and camera sensor to make unique anybody than other. anyone wants to give me a notice

July 07, 2020 at 07:46PM by habeb keke
https://ift.tt/2VVDnAE
New post on /r/flutterdev subreddit:

Made Draggable Helper Bot UI in Flutter, for Codepen.io july 2020 week 1 challenge. (Best Part: Bot gets angry when the position is been changed) feat. Shinchan XD.
https://ift.tt/3iHKc2i

July 07, 2020 at 06:39PM by 7JKS
https://ift.tt/3e1ATXG
New post on /r/flutterdev subreddit:

Noteless - A markdown note-taking app for mobile devices written in Flutter
https://ift.tt/2Z5dFeO

July 07, 2020 at 04:35PM by rockum
https://ift.tt/2O5Vvnc
New post on /r/flutterdev subreddit:

Flutter package to simplify pagination of list of items from the internet
https://ift.tt/38xolGc

July 07, 2020 at 10:10AM by QuickBlox
https://ift.tt/3iH135F
New post on /r/flutterdev subreddit:

Performant Flutter ML apps using TensorFlow Lite Flutter Plugin and Helper Library
TFLite Flutter Helper Library is now available. Check out the Image Classification example app. The performance of tflite_flutter and tflite_flutter_helper are close to their native android counterparts.Future versions of the helper library will improve support for text and audio-related applications.Visit the repositories for more info:TFLite Flutter Plugin: https://github.com/am15h/tflite_flutter_pluginTFLite Flutter Helper Library: https://github.com/am15h/tflite_flutter_helper

July 07, 2020 at 08:08AM by _am15h
https://ift.tt/31VgAZl
New post on /r/flutterdev subreddit:

Quiz app (Q-IZ) || Flutter
https://youtu.be/ipzVASHOi4c

July 06, 2020 at 09:51PM by Admirable_Ad6745
https://ift.tt/2VXM7pM
New post on Flutter Dev Google group:

end of scroll color
I don't exactly know what this property is called actually, i want to change the blue color to green, which property is it?

July 07, 2020 at 09:01PM by Yasin
https://ift.tt/2BGbtSq
New post on Flutter Dev Google group:

TextField input border
i want to remove the underline border of the input when the user types, which property is it? it hides when you get out of the textfield but i don't want it to appear when the user write something

July 07, 2020 at 10:12PM by Yasin
https://ift.tt/2Oa9Y17
New post on /r/flutterdev subreddit:

All Flutter developers should try this, it's amazing!
https://raw.githubusercontent.com/jonataslaw/getx/master/getx.pngHi developers, today I bring a suggestion that can help many of you. In the last month my team and I faced many problems due to the pandemic, we had projects behind schedule, many developers could not work, and I decided to look for productivity solutions.Ok, Flutter is already productive for being declarative, but there is still a certain boilerplate around some tools and functions. I searched for "productivity" in the pub, and clicked on the first package that appeared. He had a very long description, I read everything and decided to try it.At first, it looked like a package that tried to sell a lot, I found it very suspicious that the package had so many functions, but I decided to work 1 week with the package. The first few days I felt a little strange how things worked on him, but I soon got used to it. After a week of using it, I was very excited, I introduced it to my team, and we started working with Flutter + GetX. The other developers liked the package very much, and since then we have been working with GetX for everything.And well, my testimony is that it really changed the way we worked. Our projects had a much higher productivity, and today our entire team is very satisfied, it is as if we had found a diamond stone at pub.dev.This is just a suggestion, I'm not saying that you should immediately change everything you use for GetX, but I think there is a very clear reason why this package has gone up more than 500 stars in the last month. It's really good and I think you should give him a chance, just like I did, and tell him about his experience here. Maybe it doesn't like everyone, but I'm sure this post will help other people who, like me, want to add a package to pubspec and start working, without worrying about configuring anything.I'm going to try to summarize how things work with this package, I'm sorry if something appears badly formatted, I'm new to Reddit.To navigate to a new route, you would generally use:Navigator.of(context).push(context,MaterialPageRoute(builder: (BuildContext context) {return Home();},),);With GetX it all comes down to a simple:Get.to(Home());You should certainly already use some state management solution, which involves several steps. With Get, it all comes down to inserting a ".obs" at the end of your variable, and placing the widget you want to update inside an "Obx", example:var count = 0.obs;Obx(()=> Text(count.string));Every time the value of "count" changes, the screen is updated with the current value, this seems easier than setState, since you don't need a StatefulWidget for this.If you have text in one language, to change to another, you just need to call Get.changeLocale();Text("Hi".tr);Get.changeLocale('it');// out: Text('Ciao');I see a lot of people talking about the GetX state manager, but a lot of people don't even know the other advantages of the package, and it really is a solution that everyone should know about, and I use this package in all my company's projects, and I would like to shout how cool this package is!package link in the pub:https://pub.dev/packages/getPackage link on Github:https://github.com/jonataslaw/getx

July 07, 2020 at 11:05PM by innovationsapps
https://ift.tt/2ZPjrAn