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

Firebase Hosting domains
Hi Guys, I use Firebase Hosting in my project, which also features Google Sign-in. Strangely enough, Google Sign-in works on the domain that ends in " firebaseapp.com" but not on the one ending in "web.app". Both are valid domains automatically assigned by Firebase. Since "web.app" is more

June 29, 2020 at 11:10PM by Canberk Yüksel
https://ift.tt/3dNQ5HI
New post on /r/flutterdev subreddit:

My #Hack20 Submission Demo for app Cyberpunk Killer (Awesome Image Filters+Wallpapers)
Screens: https://i.imgur.com/hAPC8uQ.pnghttps://www.youtube.com/watch?v=4VTMv438ukw

June 29, 2020 at 11:56PM by theshivamlko
https://ift.tt/2NDElNd
New post on /r/flutterdev subreddit:

Created an App to chat in Morse code for flutter Hack20 hackathon.With features tap on msg to vibrate morse code,image text to morse& shake to translate messages to English etc.
https://ift.tt/3i8KhMt

June 30, 2020 at 02:29AM by Amazing_Aniket
https://ift.tt/2ZAnBML
New post on /r/flutterdev subreddit:

How important is readable code?
dart void main() { Calculator c = new Calculator(); print("The gross total : ${c.ret_tot()}"); print("Discount :${c.ret_dis()}"); } class Calculate_Total { int ret_tot() {} } class Calculate_Discount { int ret_dis() {} } class Calculator implements Calculate_Total,Calculate_Discount { int ret_tot() { return 1000; } int ret_dis() { return 50; } }Do you see anything that can be improved? What improvements can you make on this block of code?IMO, beginners tend to be taught to write simple variables with just a character. An example is:var a = 'Haris';Better way is:var name = 'Haris';OR shortforms, which is not any better than single character variables. An example:int ret_tot(){} What does ret and tot means?If it means return total, this can be improved as follows:int total(){}I believe this is a common beginner bad habit.Therefore, how important is readable code? And what are the ways you try to implement readability with your fellow coder?

June 30, 2020 at 05:48AM by thehappyharis
https://ift.tt/2VrxsD6
New post on /r/flutterdev subreddit:

What can we do to get links to our apps/sites in flutter.dev like Reflectly did!
Is that even possible?

June 30, 2020 at 05:49AM by 2reform
https://ift.tt/3eKWJ2P
New post on /r/flutterdev subreddit:

How good is Flutter for background heavy apps?
Currently making a cross platform app that is background heavy and have to choose between Flutter and Kotlin Multiplatform.Flutter seems very UI focused which is great, but how does it fare with an app doing things in the background? Do I need to switch to platform code to do things like keeping a foreground notification on Android and polling some API request?If that's the case then Kotlin MPP seems like the better choice for a background heavy app, especially because I have more experience with Kotlin since it's already used in native Android (and I prefer it to Dart) and state management using LiveData and Rx is more straightforward to me than Blocs and other types.Any advice on which path to take?

June 30, 2020 at 11:03AM by DickleInAPickle
https://ift.tt/31wexLg
New post on Flutter Dev Google group:

How to make this type of drawers?
[image: Untitled.png] How make like this UI of drawer?Can anyone say this

June 30, 2020 at 11:49AM by Abinavan Nagendran
https://ift.tt/2BUQvPu
New post on /r/flutterdev subreddit:

Which in app purchase package you are using, package maintained by flutter team or any other?
Title says it all.

June 30, 2020 at 11:24AM by creepy_hunter
https://ift.tt/3eNNQp7
New post on /r/flutterdev subreddit:

What database you use in 2020 with your flutter and why?
A year ago there was an interesting thread on who uses which database. Given that nearly a year passed I'm intereted in the current state of affairs. What database are you using today?

June 30, 2020 at 12:05PM by ChristianKl
https://ift.tt/3dNcrcg
New post on /r/flutterdev subreddit:

Framy - a convenient code generator for #flutter app styleguide, gallery and more.
Hey!
I've published a new package for generating a separate Flutter app based on annotations used in your normal app.
It's in a very early stage but I would love to hear what you think about it and how it could bring value to your projects or companies.There are two packages: https://pub.dev/packages/framy_annotation and https://pub.dev/packages/framy_generator.There also docs at https://framy.devLet me know what you think :)

June 30, 2020 at 12:05PM by Marcinus
https://ift.tt/2YKzDDX
New post on /r/flutterdev subreddit:

How does Lottie compare to Rive?
Are the two basically doing the same job? Are there reasons to use over the other?

June 30, 2020 at 01:14PM by ChristianKl
https://ift.tt/3gfALFB
New post on Flutter Dev Google group:

Storing GoogleSignInAccount in shared_preferences?
Trying to piece together how to use google_sign_in. I want to use Google Drive appData to store some of my application preferences. Is it okay if I stuff this into the device's shared_preferences?

June 30, 2020 at 01:16PM by Eric Knudstrup
https://ift.tt/3dQ6dbz
New post on /r/flutterdev subreddit:

Sounds 1.0 beta 1 relesed.
I'm rather pleased to announce the beta release of Sounds 1.0.0-beta.1https://pub.dev/packages/sounds/versions/1.0.0-beta.1Sounds provides a complete api and widgets for playing and recording audio in a flutter app supporting android and iOS.Sounds also support playback via the OS's audio player (shade).The beta release is the cumulation of about 8 man weeks of work (plus more evenings than I care to count).I'm fairly pleased with the final api but looking forward to some feedback.The widgets are complete but still need some work on the aesthetics and some styling options.I've made the decision that Sounds will only support native encoders/decoders. I'm in the VERY early stages of building a separate package Sounds_Codec that will provide a set of jank free codec conversions (I intend that this package will be usable outside of Sounds).I've provided high level documentation via the github wiki at:https://github.com/bsutton/sounds/wikiSo please take Sounds out for a spin and provide some feedback by posting here or raising an issue on the github website.I'm also looking for people interested in contributing to the project.Enjoy.Brett

June 30, 2020 at 01:42PM by bsutto
https://ift.tt/38f8qwn
New post on /r/flutterdev subreddit:

How to use ChangeNotifier and Provider or Bloc for: Getting a _currentPageValue from carousel.dart to in main.dart, and also want pageValue from main.dart to set value of _currentPageValue in carousel.dart?
https://ift.tt/2BRCx0y

June 30, 2020 at 01:31PM by aaklii
https://ift.tt/2NJj452
New post on Flutter Dev Google group:

Flutter crash
"Exception:Gradle task assembleDebug failed with exit code -1" Got a error message like this. Anybody know the solution? (i was doing a dicee-flutter project). Please help. Thanks in Advance!!

June 30, 2020 at 03:01PM by ANAGHA VP
https://ift.tt/2YLUjv7
New post on /r/flutterdev subreddit:

Creating custom design & interactive donut charts
https://ift.tt/2YJ0AYE

June 30, 2020 at 02:33PM by heigzir
https://ift.tt/3dIcZ3n
New post on /r/flutterdev subreddit:

App Feedback Thread - June 30, 2020
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

June 30, 2020 at 02:33PM by AutoModerator
https://ift.tt/2Vwd4ko