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

What are your infra/tools for Flutter apps?
For my ~200k lines of code Flutter app, I personally use a homemade log system, sentry for error reporting, a very naive homemade FPS detector, and so on. Since now I have a bit of time improving the infra (not sure whether I can call it like that?), and I guess I may be missing something useful (or there exists something that makes life easier but I do not know yet), I wonder what are your infrastructures?

January 19, 2022 at 07:53AM by fzyzcjy
https://ift.tt/3fAgU5J
New post on /r/flutterdev subreddit:

Need help: With a Flutter code! Is here someone smart enough to write a program and explain it
WAP to create a chess grid(black/white) of 4x4 and onClick the tile changes to red color. And automatically discard previous selection.-- Every tile should change color but one at a time. if i select new tile previous selected tile should change back to its original color.

January 19, 2022 at 08:56AM by Standard_Highway_881
https://ift.tt/3AaAD5a
New post on /r/flutterdev subreddit:

Flutter Challenges: Challenge 03
https://ift.tt/33x0cBF

January 19, 2022 at 10:53AM by __RGgt__
https://ift.tt/3Kp163W
New post on /r/flutterdev subreddit:

Please allow rootBundle access from isolates
Currently as of flutter 2.8.1, isolates cannot use rootBundle. I faced this issue and had to make a workaround for it but it introduces unnecessary code and looks ugly.Example:
Future<void> function() async{ String data= await rootBundle.loadString(filepath); compute(f,data) } void f(String data){ print(data); } 
should be
Future<void> function() async{ String data= await rootBundle.loadString(filepath); print(data); } //just call function like compute(function,args); 
I hope my example shows why rootBundle should be allowed in isolates.

January 19, 2022 at 10:14AM by glitchinthesim
https://ift.tt/3rypZkL
New post on /r/flutterdev subreddit:

Self taught Flutter developer to a working professional
Hope this article helps someone land a Flutter role and help with the transition to a working professional!https://link.medium.com/tovuDCrEWmb

January 19, 2022 at 02:04PM by harithsen
https://ift.tt/3FGT2rI
New post on /r/flutterdev subreddit:

How to develop and distribute Flutter apps and deploy them to iOS (without Mac)
https://ift.tt/3AdIkrg

January 19, 2022 at 03:54PM by Character-Flatworm49
https://ift.tt/3fAkSLD
New tweet from FlutterDev:

👥 Meet, connect, and network with other women in tech at #WomenDeveloperAcademy in Europe! ✔️ Bring skills in one of Google's many technologies ✔️ Land more speaking opportunities ✔️ Improve public speaking skills Apply by Jan 23 👇 https://t.co/xNCxNpFi2N— Flutter (@FlutterDev) Jan 19, 2022

January 19, 2022 at 06:00PM
https://twitter.com/FlutterDev/status/1483846717447544832
New post on /r/flutterdev subreddit:

Add NavigatorState extensions to strongly type your navigation with arguments, return values and named routes
https://youtu.be/wv6jHvpMgag

January 19, 2022 at 08:12PM by flutter--help
https://ift.tt/3qGRb1C
New post on /r/flutterdev subreddit:

Thoughts on the `slide_puzzle` architecture with bloc
The latest flutter challenge has an bloc-based architecture, it's built by the creator of bloc and has a pretty nice implementation of it imo. https://github.com/VGVentures/slide_puzzle/tree/release/lib/puzzleGone is the state-machine inside the view and the excessive boilerplate of declaring individual state classes to represent view states. Instead the bloc holds a chunk of complex state for the view. The view can just make some intelligent decisions, eg: ``` final puzzle = context.select((PuzzleBloc bloc) => bloc.state.puzzle); final size = puzzle.getDimension(); if (size == 0) return const CircularProgressIndicator();return BlocListener<PuzzleBloc, PuzzleState>( ``` To me this is a more pragmatic implementation of bloc as the state-machine-switch approach never justified it's excessive syntax outside of specific cases like a multi-step form view.Interestingly they still used event classes rather than moving to cubit, and just calling bloc methods directly. I'm still not sold on the value of the event abstraction layer. Seems like it provides de-coupling where none is really needed, which would primarily have the effect of making debugging harder (generally simpler to debug a direct method call, vs a routed event).Thoughts?

January 19, 2022 at 07:44PM by esDotDev
https://ift.tt/3FK0emX
New post on /r/flutterdev subreddit:

PayPal Integration in Flutter
I am trying to add a feature where users would send money to each other using PayPal in Flutter, and I specifically want to be able to send payment requests to other users. I have checked out (https://pub.dev/packages/flutter_braintree) but this package seems like it is mainly useful for merchant use cases, whereas I just want to create a "plug-in" that would allow users to send money to each other via Flutter itself.I have also checked out This Medium Blog Post on PayPal gateway integration but it is the same merchant use case that I mentioned before.Curious to see if others have attempted this and what their experience has been.

January 19, 2022 at 09:28PM by thewindblowshere
https://ift.tt/3FD1kkc
New post on /r/flutterdev subreddit:

[Project] Building a Zoom clone in Flutter
This January, I tried to build a video conferencing app like Zoom with features like joining a room, leaving a room, screen share, hand raise, mute/unmute, camera off/on and chat.I have broken down the entire development process in steps here: https://www.100ms.live/blog/zoom-clone-in-flutterConnect with me on twitter: https://twitter.com/GovindMh14

January 20, 2022 at 07:03AM by govindmh14
https://ift.tt/33ADSqT
New post on /r/flutterdev subreddit:

water_drop_nav_bar now updated to 2.1.0
fixed some issues and improved documentation.
https://pub.dev/packages/water_drop_nav_bar

January 20, 2022 at 08:13AM by pavel_birdy
https://ift.tt/3tHf7E1
New post on /r/flutterdev subreddit:

Can Flutter do everything a native Android app can?
Or are there some API calls only available via native Android development?

January 20, 2022 at 07:44AM by GassyGhoul88
https://ift.tt/33TsDtu
New post on /r/flutterdev subreddit:

What's your workflow M1 Mac users?
Do you use Android Studio or VSCode or something else?What simulators you guys use?​Rn I am using AS. But running an idle Pixel 3A sim on my Mac takes staggering 4gb ram unlike iOS simulator where it barely takes 100mbs when idling.

January 20, 2022 at 10:30AM by MrVegetableMan
https://ift.tt/3GP5Hdw
New post on /r/flutterdev subreddit:

best flutter course , u had
i'm trying to learn flutter any one got course used to be good at it ?

January 20, 2022 at 10:17AM by samelden
https://ift.tt/3fI56OQ