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

ValueNotifier inside StatelessWidget
Is it a bad practice to use ValueNotifier inside StatelessWidget?

November 03, 2020 at 10:42AM by Fienases
https://ift.tt/2TOdgdn
New post on /r/flutterdev subreddit:

Youtube music in Flutter?
I changed my music app from Spotify to Youtube Music. The reason is pretty much that I like some old anime songs that I used to watch as a kid and it cheer my day up.Youtube music app in mac is a PWA and it is nowhere near the level of Spotify.This is the only reason I might switch back.I've heard here and there that there is a possibility that they are creating a new Youtube Music desktop app with Flutter.Do you know anything about this?

November 03, 2020 at 12:32PM by bradofingo
https://ift.tt/324J2HC
New post on /r/flutterdev subreddit:

New Article Alter !
Just done with a new Flutter article, give me some high five if you like it : https://chinkysight.medium.com/creating-a-bottom-navigation-bar-which-can-float-like-sliverappbar-c8d829ded679

November 03, 2020 at 01:35PM by Chinky_Sight
https://ift.tt/327tmn9
New post on /r/flutterdev subreddit:

App Feedback Thread - November 03, 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

November 03, 2020 at 01:32PM by AutoModerator
https://ift.tt/3jNr3eQ
New post on /r/flutterdev subreddit:

Is using setState to force reload an anti-pattern?
I have a component that accesses shared preferences in its code. Something like this:
class MyWidget extends StatefulWidget { @override _MyWidgetState createState() => _MyWidgetState(); } class _MyWidgetState extends State<MyWidget> { @override Widget build(BuildContext context) { final visible = Provider.of<SharedPrefs>(context, listen: false) .getIsVisible(); return visible ? RaisedButton( child: Text('Click to Hide'), onPressed: () { Provider.of<SharedPrefs>(context, listen: false) .setIsVisible(false); setState(() {}); }) : SizedBox(); } } 
When I click the click to hide button, it sets the `visible` shared preference to false. It then calls setState(() {}) in order to rebuild the widget, therefore forcing a new call to .getIsVisible()It just feels un-flutter like but I'm not sure if there's a better way I should be doing things.

November 03, 2020 at 01:05PM by hojdog
https://ift.tt/2GnoT80
New post on Flutter Dev Google group:

Web View
Does latest stable version of flutter supports chrome web view or not ?

November 03, 2020 at 04:06PM by Jeevan Joshi
https://ift.tt/3kUIYSe
New post on /r/flutterdev subreddit:

Discord Server for App Development
Hey everyone. I just quickly wanted to let you know there's a new, fast-growing server generally focused on app development. It's different from the Flutter server in that it is intended to encompass the entire process of building an app from design to development to marketing and more -- but there's also a channel for Flutter help as well. If you're interested in talking to, learning from, and sharing knowledge with like-minded people on the subject of mobile app development, be sure to check it out: https://discord.gg/ZqeGZARx5p

November 03, 2020 at 04:15PM by AppDevDiscord
https://ift.tt/3mOvSXf
New post on /r/flutterdev subreddit:

Flutter bridge to Admob App Open Beta. Supports using Admob App Open Beta. See https://ift.tt/34Uwpkh for more information about Admob App Open.
https://ift.tt/3jDlHCU

November 03, 2020 at 03:56PM by hsangtini
https://ift.tt/2HXIOuI
New post on Flutter Dev Google group:

FCM Background Message Handler and isolates
Hi all, I know FCM background messages run in their own isolate. I have them all working, but I'm using CallKeep and it also then runs in its own isolate, so I can share anything across into it when state changes. I've spawned an isolate from my CallKeep class and can reach it from the other

November 03, 2020 at 04:23PM by gavin...@gmail.com
https://ift.tt/329t4fA
New post on /r/flutterdev subreddit:

Rebuild Discord UI in Flutter
I asked this before, but with a poor explanation of what I would like to achieve. Here is a repository which shows exactly what I would like to rebuild in my Flutter app. I dont really get started because I dont know what widgets one would use to get this done.Do you have any recommendations?https://github.com/discord/OverlappingPanels

November 03, 2020 at 05:30PM by Coppice_DE
https://ift.tt/3289YGD
New post on /r/flutterdev subreddit:

Reduce flutter logs noise on Ios.
I am developing on ios using a simulator. I run "flutter logs" on the command line to watch the logs. They are way too noisy!! When I run flutter logs on android, there is basically nothing in the logs except from my application.When running on ios simulator, I get pages and pages of log writes flying past me at a mile a minute. I can't even find the log writes that are from my app in all that noise.What gives?

November 03, 2020 at 06:55PM by scorr204
https://ift.tt/2I1yKRN