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

Flutter deployment strategy

hello engineers who are working on real time production level flutter projects. How do you plan your production deployments? Are there any tools to manage this process/ pipelines? submitted by /u/devada818 link comments https://www.reddit.com/r/FlutterDev/comments/wr45jf/flutter_deployment_strategy/
New post on /r/flutterdev subreddit:

What stops you from using Firebase?

I imagine if your app scales to more users or requires more usage, the price goes up steeply, looking at Firebase pricing page. But overall, I found Firebase free plan offers many features like auth, realtime DB, in-app messaging etc. From your experience, what stops you from using Firebase from ... https://www.reddit.com/r/FlutterDev/comments/wri6fi/what_stops_you_from_using_firebase/
New post on /r/flutterdev subreddit:

Hello everyone. I am trying to implement the body detection plugin for my app. I wish to make the camera stream fullscreen. Is there a way to do that?

Here is the code: Future<void> startCameraStream() async { final request = await Permission.camera.request(); if (request.isGranted) { await BodyDetection.startCameraStream( onFrameAvailable: handleCameraImage, onPoseAvailable: (pose) { if (!isDetectingPose) return; handlePose(pose);... https://www.reddit.com/r/FlutterDev/comments/wrn1y7/hello_everyone_i_am_trying_to_implement_the_body/
New post on /r/flutterdev subreddit:

This is a simple implementation of the SingleChildScrollView and how it applies especially in cases where your content overlaps on the screen

submitted by /u/PoeticHerald link comments https://www.reddit.com/r/FlutterDev/comments/wt5ivz/this_is_a_simple_implementation_of_the/
New post on /r/flutterdev subreddit:

Developing Android apps with Flutter on a remote VS Code server from a low-spec device with a physical phone for debugging, with Linux dev environment setup guide

submitted by /u/sominemo link comments https://www.reddit.com/r/FlutterDev/comments/wuqgx3/developing_android_apps_with_flutter_on_a_remote/
New post on /r/flutterdev subreddit:

We've build another state management framework called "Empire". (I know, I know...another one?).

We've just released a new state management system called "Empire" - if you feel like many of the existing state management packages are too complicated, but that setState is too simple, you may find it interesting. GitHub repo Why another state management framework? Over several years working... https://www.reddit.com/r/FlutterDev/comments/wvp6hj/weve_build_another_state_management_framework/
New post on /r/flutterdev subreddit:

Do you use flutter_hooks? Why or why not?

As someone coming from the React world, that's basically what I use now instead of class based components, which you can basically replace with functional_widget. A great set of libraries I use that all work with hooks and with each other is flutter_hooks functional_widget freezed hooks_riverpod ... https://www.reddit.com/r/FlutterDev/comments/wwgg1p/do_you_use_flutter_hooks_why_or_why_not/
New post on /r/flutterdev subreddit:

Flutter Flame: simplest optimization techniques

How to speed up Flame rendering from 4 FPS to 60 and provide animated tiles support. And a few small advises about Flame-made game optimizations. submitted by /u/asgalex link comments https://www.reddit.com/r/FlutterDev/comments/wx0uit/flutter_flame_simplest_optimization_techniques/
New post on /r/flutterdev subreddit:

How to work on an App completely made in Java, when I only know Flutter/Dart..?

Is it possible to either convert the whole Java code to Flutter/Dart, or some other solution? Elaborating the question:- There's an app made in Java now I want to add few more features into it. But because I don't know Java so I might have to build the whole app again in Flutter, which ofc I... https://www.reddit.com/r/FlutterDev/comments/wxdy3m/how_to_work_on_an_app_completely_made_in_java/