REDDIT
Flutter watch app
Has anyone built a watch app wearOs(android ) & watchOs(iOS) using flutter ? How was the experience and is it done all using flutter ? Or you have to do native code for every platform? One more thing ...
REDDIT
Cura: A CLI tool to audit Pub dependencies health and security
Hey everyone Over the years working with Flutter and Dart, I realized I pick packages from pub mostly based on likes and popularity. But the more projects I build, the more I realize that's a pretty w...
REDDIT
I believe you struggle with ASC and GDP tooâ¦
In 6 months of publishing apps, I realized that store setup was taking so many hours on my workflow. Here's what I learned and why the problem was worse than I thought. In these days building app is s...
REDDIT
I am planning to build a simple dashboard to track all my apps across both stores
hey, I posted here a few days ago asking how people track their apps across App Store and Google Play. got some solid feedback (thanks for that) ended up building a landing page for the idea - it's ba...
REDDIT
I tried building a generative UI package
I came across https://json-render.dev/ and thought it was really cool, so i tried to build a Flutter version to figure out how it worked under the hood. I had built the whole thing before i realized t...
REDDIT
MediaX - Media Player plugin for Flutter
I built a Flutter plugin called MediaX that provides native Audio/Video Playback using ExoPlayer for Android and AVPlayer for iOS. You can give it a try it has customisation options. MediaX is publicl...
REDDIT
Day 3 of building Clarity AI in public â things are moving faster than I expected
3 days in and here's what's happened so far: â
rebuilt the entire app in Flutter â
8k+ people have seen this journey already â
someone DM'd me wanting to be a first user â
waitlist page is liv...
REDDIT
Why is there no way for a `RenderBox` to find out if it caused its child to overflow?
I feel like I must be stupid here because I don't understand why we wouldn't have this. It seems like a parent RenderBox has no way to find out if the constraints it laid out its child with caused tha...
REDDIT
Day 3 of building Clarity AI in public â things are moving faster than I expected
3 days in and here's what's happened so far: â
rebuilt half of the app in Flutter â
8k+ people have seen this journey already â
Around 5 people DM'd me wanting to be a first user â
waitlist pa...
REDDIT
I built a tool that gives Flutter projects an architecture score
While working on several Flutter projects I kept noticing the same thing over time, even well structured codebases slowly accumulate architectural issues. Not because developers don't care, but becaus...
REDDIT
Building a Flutter plugin to auto-generate iOS Settings.bundle from Dart annotations
iOS lets apps expose a native settings panel inside the device Settings app (Settings â scroll down â YourApp e.g. for slack -> https://ibb.co/xKGq7xjm ). Integrating it with Flutter today means m...
REDDIT
Claude Code Skill to always get the last version of a package
While building a Flutter app, I ask for a feature to Claude Code, if the feature requires the use of a new package, Claude will usually put an older version of the dependency, I guess because when it ...
REDDIT
Introducing Levee â A Generic, BackendâAgnostic Pagination Engine for Flutter
Hello everyone, Iâm excited to share Levee, a pagination engine designed for real-world apps where simple infinite scroll helpers arenât enough. Pub: https://pub.dev/packages/levee Source: https:/...
REDDIT
Flutter UI library that auto-adapts components for iOS and Android
Hi everyone, Recently I started exploring Flutter and I came across a library called Curving Reality UI Library. The idea behind it is to speed up development by providing ready-to-use UI components, ...
REDDIT
Do you use Zeytin in your projects?
I've started developing Zeytin further, which has gradually begun to gain popularity recently. Are you developing a server or mobile application using the Zeytin database? Did you use a ready-made ser...
REDDIT
Flutter devs: how are you handling realâtime sync today?
I noticed something while building several Flutter apps. Most of the time when we say we're building a realâtime app, we're not actually building the app. We're building the sync layer around the ap...
REDDIT
Run LLMs locally in Flutter apps - no internet, no API keys, or usage fees (Gemma, Qwen, Mistral...)
Hey Flutter devs ð We've built an open-source Flutter library that runs LLMs entirely on-device across mobile and desktop. Your users get AI features without internet connectivity, and you avoid cl...
REDDIT
Why canât Flutter isolates access platform channels used by plugins?
I noticed that calling a plugin inside compute() can cause a MissingPluginException on Android. final result = await compute(processData, data); This can be confusing when youâre new to Flutter, esp...
REDDIT
Day 2 of Rebuilding My App in Flutter â Learning Flutter State Management
I recently started rebuilding my Android app in Flutter so I can launch on both Android and iOS with a single codebase. Todayâs focus was understanding state management properly instead of just hack...