Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
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
New tweet from FlutterDev:

Ω…Ψ±Ψ­Ψ¨Ψ§ في ΩŠΩˆΩ… فلاΨͺΨ± πŸŽ‰

Get ready for #FlutterEngage MENA! Join us for updates on Flutter 2 and a Q&A from @filiphracek πŸ‘‰ https://t.co/gXHlxxHskt pic.twitter.com/55GAVgo9Ikβ€” Flutter (@FlutterDev) March 24, 2021

March 24, 2021 at 03:59AM
http://twitter.com/FlutterDev/status/1374556533703503872
New post on /r/flutterdev subreddit:

What do you use for error handling or logging?
I was curious if you guys use any tools or software for error handling and remote loggingI needed a way to catch errors on the app and log them on my server for debugging later, but instead of building that myself I wanted to know if there's already existing solutions I can use

March 24, 2021 at 04:45AM by almostrogersimon10
https://ift.tt/31fG9TD
New post on /r/flutterdev subreddit:

A dropdown box placement and keyboard issue which is annoying but has got ignored since some time.
If in a screen you have a textfield and a dropdown and you click on the text field, the keyboard appears. After that if you click on the dropdown the keyboard disappears and the widgets crawl to bottom of screen. But the dropdown options keep hanging at the initial position instead of crawling back to bottom with the dropdown.Here is an open issue to upvote - https://github.com/flutter/flutter/issues/46676

March 24, 2021 at 05:18AM by motominator
https://ift.tt/2NKiabU
New post on /r/flutterdev subreddit:

Building desktop app using Flutter 2.0
Has anyone used flutter 2.0 for creating desktop app?
If so, are there any obvious advantages?I saw comment on slack group that people experience much higher cpu usage and bigger memory footprint. Has anyone tried?

March 24, 2021 at 09:00AM by draskosaric
https://ift.tt/3sjqoGW
New post on /r/flutterdev subreddit:

Open Source Flutter Doctor App
Hello everyone,I have coded this design in Flutter and uploaded the source code on Githubhttps://github.com/hosain-mohamed/doctor-appThis design was inspired from herehttps://dribbble.com/shots/15332641-Medical-Mobile-AppTell me your opinion, Thanks

March 24, 2021 at 09:57AM by Crafty-Daikon-828
https://ift.tt/3ciVsBo