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

Any advice for a guy with a messy clean arch app?
Yes it looks paradoxical, but that's how things turned out after 5 months of development.Today I was trying to add a subscription service to my app and I just couldn't find a way to make it fit nicely.Every new feature I'm trying to add is getting exponentially harder.I wish I could remake everything from scratch choosing Provider + change notifier and mvvm instead of Bloc + Clean Arch. But I'm too far from the beginning and too close from release to do such thing.I think I can't blame bloc or clean architecture itself. But mixing them is pretty bad. Especially with dependency injection.

March 23, 2021 at 08:07AM by werexzenok
https://ift.tt/3tQG2Kz
New post on Flutter Dev Google group:

FLUTTER 2.0, WEB: I want to read the QR CODE and go to the page.
FLUTTER 2.0, WEB I want to read the QR CODE and go to the page. 1. I would like to receive a QR code as an argument. -QR code is a dynamic number. 2. Several people access the same page. Do not go to the button. This is a page that displays information according to the qr-code value. I want

March 23, 2021 at 10:13AM by Patrick386
https://ift.tt/2PoiUnO
New post on Flutter Dev Google group:

Gridview
i have the problem in gridview 'package:flutter/src/rendering/sliver_grid.dart': Failed assertion: line 484 pos 12: 'crossAxisExtent > 0.0': is not true. code import 'package:flutter/cupertino.dart'; import '../dummy_data.dart'; class CategoryScreen extends StatelessWidget { @override Widget

March 23, 2021 at 10:23AM by Mulham Tuliamat
https://ift.tt/2Ph8FS0
New post on /r/flutterdev subreddit:

Flutter + Appwrite (A self-hosted Firebase alternative) = Awesome Apps
In this tutorial series, learn to develop Flutter Applications with Appwrite a self-hosted firebase alternative.https://www.youtube.com/playlist?list=PLUiueC0kTFqI9WIeUSkKvM-a_3fyaIiuk

March 23, 2021 at 12:02PM by lohanidamodar
https://ift.tt/3f7XVAu
New post on /r/flutterdev subreddit:

Music Player App
I created an Android Music Player app that lets the user listen to millions of music online for free. You can even download songs, like them, add to playlists, etc. everything you expect from a music player app and everything for FREE. The App does support offline music play too and in the best quality (320 kbps). And the most important thing, NO ADS, NO SUBSCRIPTION, nothing. I hope you will like it. Feedbacks appreciated :)You can download the latest version from here: https://github.com/Sangwan5688/BlackHole/blob/main/BlackHole%20v1.1.apkScreenshots attached here: https://github.com/Sangwan5688/BlackHole

March 23, 2021 at 12:16PM by sangwan_5688
https://ift.tt/3vL41MO
New post on /r/flutterdev subreddit:

If you're using Flutter for your mobile app projects only, what do you use as a replacement for Flutter web?
I'm planning to learn and ultimately use Flutter for the projects that I'll be working on. I've read that Flutter web is stable but a bit clunky and the performance is not really great (correct me if I am wrong), so I'd like to know what do you use as a replacement?Do you still suggest using Flutter web? I mean code it once and build it for Android, iOS and web. What do you suggest would be the closest to have that set up?

March 23, 2021 at 01:39PM by _clapclapclap
https://ift.tt/3cdyuLH
New post on /r/flutterdev subreddit:

Wrote an article on setting up Firebase for Flutter Android apps!
https://ift.tt/3d31vsT

March 23, 2021 at 01:31PM by mukhtharcm
https://ift.tt/3cdmmub
New post on /r/flutterdev subreddit:

Way to make Flutter tests more compact?
I have recently tried out Test Driven Development writing unit and widget tests side by side and I can't help but wonder if there is a more concise way to (for example) test different possible inputs to a TextFormField without having to create a separate test for them? Basically a shorter version of...test(
'Email validator should return warning string for invalid email (1).',
            () {
final wrongEmailResult = model.validateEmail('t');
expect(wrongEmailResult, 'Please enter a valid email!');
        });
test(
'Email validator should return warning string for invalid email (2).',
            () {
final wrongEmailResult = model.validateEmail('t@');
expect(wrongEmailResult, 'Please enter a valid email!');
        });
test(
'Email validator should return warning string for invalid email (3).',
            () {
final wrongEmailResult = model.validateEmail('t@t');
expect(wrongEmailResult, 'Please enter a valid email!');
        });...that achieves the same result of three different possible inputs in just one test (maybe like a for loop or something).

March 23, 2021 at 02:26PM by SkyWyrMe
https://ift.tt/319EYVF
New post on /r/flutterdev subreddit:

Custom Flutter code or UI Builder??
Hey guys! Quick question. Is it advisable to use a flutter ui builder like fluxbuilder.com or should i use custom flutter code. I really suck at design but am pretty good at implementing logic in the backend and stuff like that as they dont require and visual stuff. What are the pros and cons of using a builder?Or should i just continue striving to build UIs that look like crap

March 23, 2021 at 02:20PM by yrn_quavo
https://ift.tt/3vQyM2Y
New post on /r/flutterdev subreddit:

Building your own Audio Broadcasting application like clubhouse
Clubhouse is one of the biggest social media platform of 2021. Drop in chats where multiple broadcasters can share their thoughts to audiences was a new concept and we are seeing many apps with a similar use case.
I tried building an app similar to clubhouse using the Agora Flutter SDK. The app can be used for live audio streaming where a broadcaster can create a channel and other broadcasters and audiences can join the channel.You can go ahead and read more about it in my blog over here: https://www.agora.io/en/blog/building-your-own-audio-streaming-application-using-the-agora-flutter-sdk/You can also have a look at the code for the same over here: https://github.com/Meherdeep/agora-flutter-audio-broadcastingPlease let me know what you think about it, I would love to hear how I can improve on this.

March 23, 2021 at 08:25PM by ameanhoeacid
https://ift.tt/3rd1ck3
New post on Flutter Dev Google group:

Nested Navigators - WillPopasync
I have a base navigator in my root app, which roots to a page with three tabs nd each tab has its child navigators... How do I handle willpopscope for the child navigator pops..? It by default goes to the root of the parent navigator...

March 23, 2021 at 09:54PM by Hariharan Gurumurthy
https://ift.tt/3cerhes
New post on Flutter Dev Google group:

Bloc projects broken with new flutter
Trying to clone and look at an app on github and every project with bloc won't work and the apps are giving trouble upgrading to null safety. *flutter newbie Example Repo: https://ift.tt/319FJ0P

March 24, 2021 at 12:09AM by Scott Beeker
https://ift.tt/2Pnhw4w
New post on Flutter Dev Google group:

Gradlew
Gradlew does not work with open jdk 16 -not for the moment at least.I hope it will one day with more security as far as checksum is concerned. Will it? Thanks 😊 Envoyé depuis Yahoo Mail pour Android

March 24, 2021 at 01:11AM by Bened
https://ift.tt/3re1Qhu
New post on /r/flutterdev subreddit:

Aqueduct is not dead!
You may have heard that stable kernel is no longer going to support Aqueduct.Rest assured that Aqueduct is not dead.A coalition of developers are now getting organised to provide ongoing development and support for the new Aqueduct.If you want to get involved with aqueduct (soon to be renamed) then you can join the discord discussion at:https://discord.gg/NJAktS5bWe are setting up a meeting to discuss the foundations of the community around the new aqueduct:https://www.when2meet.com/?11431831-4XR9DHop into the above meeting link to indicate your time preferences.The meeting will be held on the discord server noted above.For those of you who don't know what aqueduct is:Aqueduct essentially allows you to write your back end in dart.It acts as a REST endpoint for your Flutter apps and includes support for postgres (DB) and a raft of other technologies.The core reason to use Aqueduct is so that you can use a single language for both your frontend (flutter) and backend development and get the significant productivity improvements from doing so.More announcements on the direction and support mechanisms for the new aqueduct will be made over the coming weeks.

March 24, 2021 at 01:31AM by bsutto
https://ift.tt/2NK45v6
New post on /r/flutterdev subreddit:

Flutter Open Source Quiz - Trivia Application : Works on Android, iOS, Web and Desktop
An open source quiz application build with Flutter using OpenTDB API.Source CodeWeb liveTest on Linux

March 24, 2021 at 02:28AM by lohanidamodar
https://ift.tt/3f8BYRN