Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on /r/flutterdev subreddit:

Filter list with 4 levels deep categories
I have created a list of contacts which sell a certain type of product , I want to create a filter option where user selects categories one after another in order to attain the final result .My database is in Json and is loaded via firebase .Database structure (Using example of clothes for better understanding)
{ "Companies": [ { "address": "123 street , New York , USA", "company_name": "A Test", "category": [{ "group": "Clothes", "subgroup": "Men", "type": "Tshirts", "subtype": "Cotton", "extra": "Full Sleeved", "premium": false, "expiry": "" }, { "group": "Footwear", "subgroup": "Men", "type": "Formal", "subtype": "Leather", "extra": "Loafers", "premium": true, "expiry": "25/02/2020" }, { "group": "Clothes", "subgroup": "Men", "type": "Pants", "subtype": "Denims", "extra": "", "premium": false, "expiry": "" } ], }, 
​So the above structure is loaded from firebase . the actual structure looks like this
group{ subgroup { type { subtype { extra { }}}}} 
so the hierarchy goes like this . We want to ask user to select options one after another to so that they can reach desired list of results . showing all options together would confused the user .

March 07, 2020 at 11:04PM by nikesh03
https://ift.tt/333UthZ
New post on /r/flutterdev subreddit:

Build a note-taking app with Flutter + Firebase — Part II
The second part of the series "Build a note-taking app with Flutter + Firebase" has been published in the Flutter Community on Medium.In this iteration, a plain-text editor with reversible operations, plus a beautiful Hero transition animation, will be added to the app.You may also find the complete example code in this GitHub repo.

March 08, 2020 at 02:49AM by yingxinwu
https://ift.tt/3aAf2Fq
New post on /r/flutterdev subreddit:

Testing
Can i test my app without using an emulator? if so how?

March 08, 2020 at 02:41AM by keeperpaige
https://ift.tt/38zmsam
New post on /r/flutterdev subreddit:

Released my very first app on the Google Play Store, and it's open-source!
This is my very first app being released on the Play Store, and I'm ecstatic to share it with you. It's a really simple money manager app that focuses on simplicity and security. It was built initially for personal use, as I'm someone who loves to manage their finances manually, knowing fully well that there is no one person or a company that is looking through my messages or tracking my spending habits.I don't have much to say about it. I'd love for you to try it out and let me know how it is. Please let me know in the comments section below if you found it useful, or if you have ways of making it better and I'll consider them.You can find the app on the Google Play Store through this link: https://pillai.xyz/thriftyOh, I forgot to mention... It's also an open-source project. So if there's anyone who's learning Flutter or Firebase, you should check out the app and its source code on GitHub. It might help you with your next project. Here's the link to the GitHub repository: https://github.com/AmruthPillai/BeThriftyTodayThank you so much, hoping to hear from you! 🙂

March 08, 2020 at 05:01AM by AmruthPillai
https://ift.tt/39CGlyM
New post on /r/flutterdev subreddit:

How to get context in FlutterActivity inside MainActivity.kt?
How to get context here? I keep getting null on my sharedPref because of context being nullprivate val CHANNEL = "samples.flutter.dev/battery" private val sharedPref = context.getSharedPreferences(“”,Context.MODE_PRIVATE)override fun configureFlutterEngine(@NonNull flutterEngine: FlutterEngine) { GeneratedPluginRegistrant.registerWith(flutterEngine) MethodChannel(flutterEngine.dartExecutor.binaryMessenger, CHANNEL).setMethodCallHandler { call, result -> // Note: this method is invoked on the main thread. // TODO } } } ```

March 08, 2020 at 07:08AM by SilentK213
https://ift.tt/39BNuPK
New post on Flutter Dev Google group:

flutter docker images
running flutter doctor in docker images shows below exception. irrus@cbef12a85d38:/build$ flutter doctor Warning! This package referenced a Flutter repository via the .packages file that is no longer available. The repository from which the 'flutter' tool is currently executing will be used

March 08, 2020 at 07:32AM by jayaram a
https://ift.tt/2Iwed4l
New post on /r/flutterdev subreddit:

Hey! Sound comes through 'system' instead of 'media'? Yeah, I need some more help :)
Hey! I am a noobie Flutter developer and I am making an app with various types of buttons that have the default sound effect attached to them. When I deploy it to my physical device (samsung a8) my sound from buttons is classified as 'system' sound in the phone Instead of the normal 'media' sound where I want it to come from. Is there an easy fix for this? Thanks so much!!!! I really appreciate your help! :)

March 08, 2020 at 09:47AM by sniperpanda33
https://ift.tt/32YpP9I
New post on /r/flutterdev subreddit:

Is it possible to change Bluetooth display name with Flutter?
I want to change Bluetooth display name before activate it. I looked at device_info and flutter_blue packages but I couldn’t find anything about it.

March 08, 2020 at 10:50AM by Ascolt
https://ift.tt/2VWGlFF
New post on Flutter Dev Google group:

How can I add something to lists and use this data for charts in flutter
Hello Flutter Community, I have just two questions: First I would like to know how to add some Information to a List. I tried the gesturedetector which asks for a textfield but I don't know how to implement it in a floatingactionbutton. Second: How can I use this list for a individual created

March 08, 2020 at 11:51AM by Marcus
https://ift.tt/38zTSG6
New post on /r/flutterdev subreddit:

FlutterForce — Week 67
https://ift.tt/2VUZVCc

March 08, 2020 at 12:00PM by flutterist
https://ift.tt/3cFcHLh
New post on /r/flutterdev subreddit:

Game made with Flutter
Since Flutter is super fast and efficient with rendering, we tried if we can make a simple game with it, and it has worked out incredibly well for us. I wanted to share the result with you. There is quite a lot of animations going on at once between levels and especially when the user selects a wrong answer, and Flutter manages all of them like a champion. Even on low-end devices, we have a solid frame rate.The only issue we ran into is the quality of the gradient background we use and animate endlessly. If you know any way to optimize the quality of gradient layers, pleas let us know in the comments. Any other feedback is also more than welcome!🎥 Gameplay video: https://youtu.be/r1gz3xDiR4U
🤖 Android app: https://play.google.com/store/apps/details?id=app.rightgame

March 08, 2020 at 01:37PM by szugyi
https://ift.tt/331WlIa
New post on /r/flutterdev subreddit:

App drawer from Bottom of the Screen
I want to have app drower to come from the bottom of the screen. It can be achieved through stack I wanted to know if it is a good idea to do that or not

March 08, 2020 at 04:36PM by faiyazkhan024
https://ift.tt/38xG8eQ
New post on /r/flutterdev subreddit:

Post what app you made in flutter!
Hey guys, I am starting out in flutter development and it would be very motivational to see apps you all made purely in flutter. Post ahead!! Thanks

March 08, 2020 at 06:57PM by Rplast
https://ift.tt/2IugwF5
New post on /r/flutterdev subreddit:

Good or bad practice to include Cupertino (iOS) style in android release?
Hi everyone, I have an app on both the App Store and play store written in flutter without any platform specific code. I’d prefer to not have any widgets depend on the platform for easier maintenance and cleaner code but if I have to I will.Basically I need to add a date input field and from the looks of it I have two options.datetime_picker_formfield which has a more Android feel to it imo.OrCupertinoDatePicker which has an iOS style.I heavily prefer CupertinoDatePicker because it feels cleaner and easier to use. That’s a matter of opinion though and I can understand if people disagree. Anyways, I’d like to use CupertinoDatePicker as my widget for date input but it feels like a bad practice from a UI/UX standpoint for the Android users. I could be wrong though. What do you all think? Bad practice or no?

March 08, 2020 at 06:52PM by Throqaway
https://ift.tt/2Isdsta
New tweet from FlutterDev:

💙It’s #IWD2020 and we're proud to present.. #MotherOfDashes AKA, @nlycskn!

"Community is an important part of Flutter. The goal of our community programs is to build, support, and foster the communities around Flutter."

Get to know #Flutterista Nilay → https://t.co/O9hVoCmqbl pic.twitter.com/G3PCGakn20— Flutter (@FlutterDev) March 8, 2020

March 08, 2020 at 08:00PM
http://twitter.com/FlutterDev/status/1236728418856849408
New post on /r/flutterdev subreddit:

Turn images to grayscale in Flutter: The ColorFiltered widget
“Turn images to grayscale in Flutter: The ColorFiltered widget” by Samarth Agarwal https://link.medium.com/qbp8C8laH4

March 08, 2020 at 08:33PM by samarthagarwal
https://ift.tt/38u5aLW
New tweet from FlutterDev:

Presenting
another
inspiring#Flutterista!

💙#IWD2020

"I’m mainly working on #EdTech, teaching kids coding like Scratch and Python basics. I enjoy cultivating a new generation with tech ability..." - @joaniehuang

Get to know #Flutterista Joannie → https://t.co/O9hVoCmqbl pic.twitter.com/NZ9BPOB8vz— Flutter (@FlutterDev) March 9, 2020

March 09, 2020 at 01:00AM
http://twitter.com/FlutterDev/status/1236803915179528192
New post on /r/flutterdev subreddit:

Hey! Would anybody mind helping me? I'm having quite a lot of trouble with this sound bug.. thanks so much!!!
Hey! I am a noobie Flutter developer and I am making an app with various types of buttons that have the default sound effect attached to them. When I deploy it to my physical device (samsung a8) my sound from buttons is classified as 'system' sound in the phone Instead of the normal 'media' sound where I want it to come from. Is there an easy fix for this? Thanks so much!!!! I really appreciate your help! :)

March 09, 2020 at 12:15AM by sniperpanda33
https://ift.tt/39zfu6R
New post on Flutter Dev Google group:

Looking for Help in building Professional Flutter Apps.
Hi, I am a Flutter novice, and I have been trying to learn Flutter for about 4 months. This should be plenty of time for me to be able to create professional apps, but I get stuck at about every level and I could really use some help. My background is basically in backend development. I have

March 09, 2020 at 08:40AM by Hassan Hammad
https://ift.tt/2Ismpme