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

Playify
I developed a plugin that can fetch songs/albums/artists from Apple Music and play/pause/seek/shuffle/repeat/set a queue. Currently it is only iOS supported, but I want to also add Android support (presumably with some help). I intended to develop this plugin for developers to easily implement music player mobile apps. This is my first Flutter plugin and the first time I ever wrote native code, so I would always appreciate a PR, tips, and suggestions. Thanks for checking it out.Playify

August 25, 2020 at 01:00PM by iberatkaya
https://ift.tt/2CX4V2l
New post on /r/flutterdev subreddit:

App Feedback Thread - August 25, 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

August 25, 2020 at 02:33PM by AutoModerator
https://ift.tt/2FWD5Ew
New post on /r/flutterdev subreddit:

Preprocessor support instead of code generation
Sometimes we need to use a method called code generation to write less code eg: for serialization or modelling, scaffolding, etc... But it have some issues, for example it generates 2x files (mode.dart, model.g.dart), or we have to re-generate code when we change something, or last 1-2 days build_runner is completely broke (hive#387).But If we have some sort of preprocessor (like C preprocessor) that runs and generates code before compiling it would solve some of the issues. It requires changes on core build system to add preprocessor layers. If we have ability to add custom preprocessor layers to dart build pipeline we could write our own preprocessors or even use exists preprocessors like C preprocessor in dart code.What do you think about that?

August 25, 2020 at 05:08PM by zMisir
https://ift.tt/32t5VDU
New post on /r/flutterdev subreddit:

New release step_progress_indicator 0.2.4 - Added rounded edges and gradient colors
https://ift.tt/38WoDWH

August 25, 2020 at 05:31PM by cmprogrammers
https://ift.tt/34v508D
New post on /r/flutterdev subreddit:

Background location package
Hi guys,Has anyone used a background location package for flutter such as geolocator or background_location? I am wondering the following:How accurate is the location data (assuming using best accuracy settings)How much data is usedWhat is the effect on batteryWhat is the best package/solutionCheers

August 25, 2020 at 05:29PM by Maxxammus
https://ift.tt/2FXd1sT
New post on /r/flutterdev subreddit:

Thanks!
Got 100 subs in my YT channel, and I wanna thank you all the Flutter developers who joined rapidly recently.

August 25, 2020 at 05:25PM by indy900000
https://ift.tt/2YxMKrn
New post on Flutter Dev Google group:

Scroll tab
Hello guys, I want to know how to create scroll tabs like google news

August 25, 2020 at 05:41PM by Gulam Fahad Ahmed
https://ift.tt/32o9Thd
New post on /r/flutterdev subreddit:

Flutter notes app (open source)
😊 Hi guys, I'm very happy to share this app with you, a simple notes app with the dark mode, I hope you like it You can check the source code: https://github.com/Abdellatif404/flutter_notes_appAnd test it on your phone: https://drive.google.com/file/d/1H1riR4fgrwYG1ld95zHByGB1iAjijGy5/view?usp=drivesdk

August 25, 2020 at 06:27PM by Abdellatif404
https://ift.tt/3gnle68
New post on /r/flutterdev subreddit:

Create and use SVGs and custom animated icons in flutter on android, iOS, and web platforms using flare design tool. You do not need any prior knowledge of designing vectors or icons.
https://ift.tt/2EpZMAv

August 25, 2020 at 09:18PM by subhendupsingh
https://ift.tt/31pS9Tg
New post on /r/flutterdev subreddit:

What tool do you use for designing Flutter apps?
View Poll

August 25, 2020 at 10:39PM by goranlu
https://ift.tt/2Ew15xF
New post on /r/flutterdev subreddit:

Massive FCM message amounts. Best Practise?
Hey, if possible, I'd like to hear your opinion about this situation I've got in right now.I will simplify a little here, as the whole context doesn't really matter, so trust me, what I want to do makes 100% sense if you'd know the whole story.Basically at first launch the user can choose a main-topic, 1 out of 30 and after that, he can select sub-topics (options depending on the main-topic) out of a list.The twist is that sometimes a sub-topic can be selected via all main topics, so basically I'd need to account for the situation that all sub-topics could also be selected via all main-topics.And basically after the user has selected those, they'll get a daily notification about the topics via cloud functions and fcm.Now for the tricky part : I'm using fcm topics which the devices subscribe to, so I can basically broadcast those messages.At first I thought : Yeah, I'll just create a fcm topic for every main-topic and sub-topic there is, until I realized, I'd then be blasting out a massive amount of notifications.The information broadcasted per notification is not big at all, and although it sounds stupid, basically the content of every notification can be compressed to one digit.So basically, instead of broadcasting one message with one digit per topic, I'd want to publish one notification with all digits based on the selected topics on a daily basis to the user.The problem is that with all possible combinations to account for, I'd be sending in the millions of notifications per day, since I'd need to account for every possible combination of main-topics and sub-topics.Could you think of a better solution than just subbing a user to topic /topics/m12.s72.s63.s45.s52.s89.s31.s21.s94 and so forth since it doesn't seem exactly like best practise to me..?I'd be interested to hear your thoughts!​(BTW : I'm using as mentioned Firebase Cloud Messages fired by Firebase Cloud Functions to Flutter Applications running on Android and iOS)

August 26, 2020 at 03:10AM by klingens13
https://ift.tt/2Ek8G2C