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

Re: For what reason the release app bundle will contain the original Dart (source) code?
Without the *compiled* Dart code, the runtime will have nothing to run. On Sat, May 23, 2020, 10:44 AM Andreas
New post on Flutter Dev Google group:

How to exclude the features or plugin in Flutter app and only download the plugin or feature when the user need the feature?
Currently, I am using the flutter ZOOM plugin as dependency in my Flutter App. However, I found that after compiling, the app size is too big and inconvenient for the users to download. So, what should I do to exclude the plugin first and only download the plugin programatically when the user

May 23, 2020 at 06:36PM by Lucas Fancation
https://ift.tt/2AZ2V8x
New post on Flutter Dev Google group:

Re: Does the R8 code shrinker makes obfuscating by default?
You will have to obfuscate your code... Souvik flutter dev On Sat, May 23, 2020, 9:27 PM Andreas
New post on /r/flutterdev subreddit:

How to improve your Flutter application with gradient designs
https://ift.tt/2ysPXid

May 23, 2020 at 06:40PM by Elixane
https://ift.tt/2zoPvSG
New post on Flutter Dev Google group:

How to use --split-debug-info=/
In the command below, how to use *--split-debug-info=/
New post on /r/flutterdev subreddit:

Flutter long shadow animation.
https://ift.tt/2zMBpKN

May 23, 2020 at 08:50PM by jmonga98
https://ift.tt/2LTM6Om
New post on /r/flutterdev subreddit:

Parallax hover effect
https://ift.tt/3gfLu3u

May 23, 2020 at 08:49PM by jmonga98
https://ift.tt/2A8Fl8z
New post on /r/flutterdev subreddit:

Really interesting Flutter callback
Hi! I've been coding up my app and I needed a way to add a listener to a ChangeNotifier, and then remove it as soon as it's called. I'm not sure if there is a better way to do it, but I thought this was really cool and shows the strengths of Dart:
//creates a listener that only triggers once, and then removes itself void createSelfRemovingListener(void Function() functionToCall, ChangeNotifier notifier){ void Function() f; f = (){ functionToCall(); notifier.removeListener(f); }; notifier.addListener(f); } 
so, what happens here is function f is defined, and inside the definition of the function, it calls the function that needs to be called. then, it instantly removes the listener (itself). that means if the change notifier sends out 10 events, the listener will only trigger once!Let me know your thoughts!

May 23, 2020 at 09:38PM by anthOlei
https://ift.tt/2TvZAnA
New post on Flutter Dev Google group:

Very basic but fundamental question
Can we make a website out of a Fullter app? Thanks

May 23, 2020 at 11:50PM by Cindy Wang
https://ift.tt/36qcmZZ
New post on /r/flutterdev subreddit:

[Self-Promotion] Blog post on Expanded vs Flexible
Hey everyone,I wrote a medium article on differences between Expanded vs Flexible. Its not behind paywall and would really appreciate any feedback you have, even downvotes or even being critical.Cheers!https://medium.com/@sid.310/flutter-responsive-apps-flexible-vs-expanded-ff8cc92b468f

May 24, 2020 at 12:04AM by wisecrack2
https://ift.tt/3givNZq
New post on Flutter Dev Google group:

New flutter package
Hey guys, I made this package for flutter. After the launch of flutter web on beta I wanted serve my app on web so everyone can review it easily. So my quest begins when i started to find packages for the same task and I couldn't so I thought why not make it myself, so here is my package named

May 24, 2020 at 12:13AM by Darshan Rander
https://ift.tt/2WXukAf
New post on Flutter Dev Google group:

How to use SharedPrefrences package
i want to use SharedPreferences , i have created theses two functions set and get and calling it on void inistate,,,,when i change the value of key,,it's not reflecting on first restart,,,like if i change that 12345 to something else and restart. it show the old value,on second restart it change

May 24, 2020 at 12:33AM by Attaullah Khan
https://ift.tt/3gjgIH6
New post on Flutter Dev Google group:

How to use SharedPrefrences package
i want to use SharedPreferences , i have created theses two functions set and get and calling it on void inistate,,,,when i change the value of key,,it's not reflecting on first restart,,,like if i change that 12345 to something else and restart. it show the old value,on second restart it change

May 24, 2020 at 12:34AM by Attaullah Khan
https://ift.tt/2WX2gwH
New post on Flutter Dev Google group:

Need emergency help.... I can't run flutter app in android device and can't build apk due to gradle issue
*When i run this bellow things are shown:* FAILURE: Build failed with an exception. * What went wrong: Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'. > Could not resolve all task dependencies for configuration ':app:debugCompileClasspath'. > Could not resolve

May 24, 2020 at 12:52AM by Syed Sohan Ahmed
https://ift.tt/2XnRfn7
New post on /r/flutterdev subreddit:

Toughest Flutter concepts to learn as a beginner?
When just starting to learn Flutter, what were some of the most challenging concepts for you to learn and understand? Also, what about the concept made it unintuitive for you?

May 24, 2020 at 02:34AM by thebteam10
https://ift.tt/2XnoSFM
New post on Flutter Dev Google group:

Flutter -
Need help... did anyone get a compiler error like this.."Compiler message: lib/main.dart:1:8: Error: Not found: 'dart:js' import 'dart:js';" and how to fix it? Thanks !

May 24, 2020 at 03:27AM by Heli Perera
https://ift.tt/3gglBRd