Flutter Heroes
25.9K subscribers
272 photos
2 videos
31.1K links
Download Telegram
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
New post on /r/flutterdev subreddit:

Flutter Valsad is here💙
Flutter Valsad is here 🥁🥁 Instagram: https://www.instagram.com/flutter_valsad Twitter: https://twitter.com/flutter_valsad💙💙

November 03, 2020 at 06:54PM by AbhishekDoshi26
https://ift.tt/2I11nhL
New post on Flutter Dev Google group:

Flutter Job Opportunity
Hi, Required a full-time developer for Flutter in Hyderabad, India. Please revert back for more info. *Note:* Need to have a prior working knowledge with flutter.

November 03, 2020 at 08:48PM by Harivamshi Diddiga
https://ift.tt/2HUXcE1
New post on /r/flutterdev subreddit:

[flutter_local_notifications] Looking for plugin testers
Anyone up to help a open source project?This PR could need some help from the community: https://github.com/MaikuB/flutter_local_notifications/pull/880. I have added notification actions back to the plugin but have read about issues like https://github.com/flutter/flutter/issues/23904, which could cause issues when the foreground dart app receives messages from the background. Unfortunately, I was not able to build a sample case fo this yet.It would be great to learn about other peoples Apps & use cases for this PR and ideally receive a sample project that shows specific problems as you encounter them. Thank you

November 03, 2020 at 10:05PM by seb-ened
https://ift.tt/329RNAe
New post on Flutter Dev Google group:

Flutter Deprecation Lifetime
tl;dr: Deprecations in the Flutter framework will now have a consistent lifetime of 1 year after stable release, or 4 stable releases - whichever is longer. Hello everyone, In the past, we have removed deprecated code from the Flutter framework on an inconsistent basis. This has led to

November 03, 2020 at 11:55PM by Kate Lovett
https://ift.tt/2TNenu1
New post on /r/flutterdev subreddit:

How have you distributed test versions of your flutter app?
I am starting to explore options for distributing test versions of the flutter app I am working on. I want to distribute test versions of both ios and android, but I am much more concerned about ios.How have you solved this problem in the past?I am looking at services like test flight or firebase app distribution. Has anyone ever used both, and preferred one over the other?

November 03, 2020 at 11:04PM by scorr204
https://ift.tt/3enT63g