DEVTO
Flutter Widget Deep Dive: Custom Bottom Navigation
Hey Devs! Today I worked on enhancing the bottom navigation bar in my Flutter app. Replaced the default Navigation Bar with a custom Container for a premium look. Added animated glow effects on select...
REDDIT
I Added Data Classes To Dart! (Kind of...)
We've been asking for data classes in Dart since 2017! Well, I got tired of waiting. So I created a VS Code Extension that allows you to convert pseudocode into production ready dart code. As a result...
REDDIT
I built a Flutter framework focused on reactive architecture & performance â Fluxy ^0.1.8 (Feedback welcome)
Hey Flutter devs ð Iâve been working on an open-source Flutter framework called Fluxy, and I just released v0.1.8, which brings a major upgrade to its reactive architecture and performance model....
HACKERNEWS
Show HN: Unflutter – a static analyzer for Flutter/Dart AOT
Article URL: https://github.com/zboralski/unflutter Comments URL: https://news.ycombinator.com/item?id=47035788 Points: 1 # Comments: 0
DEVTO
Fluxy ^0.1.8 : A New Era of State Management for Flutter
State management in Flutter has always been a hot topic. We have excellent tools like Bloc, Riverpod, Provider, MobX, and Signals. Each solves important problems, but building large-scale, offline-fir...
REDDIT
Adding Live Activity to a Flutter app was easier than I expected - here's the architecture and what it did for retention
I put off adding Live Activity to my Flutter calorie tracker for months because I assumed it would be a nightmare. Native Swift code, Widget Extensions, ActivityKit - it sounded like a rabbit hole. Tu...
REDDIT
Fiddling around with pulldown menus
For more than an hour, I tried to "theme" a pulldown menu to make it at least to look like macOS. This requires to setup a Theme with ThemData for MenuBarThemeData, MenuThemeData, MenuButtonThemeData,...
REDDIT
Has anyone here integrated AI assistance into their Flutter/Dart workflow recently?
Iâm curious about three things in particular: IDEs / environments Are you using VS Code, or something like Cursor or Antigravity? How smooth is the integration in real Flutter projects? 2) Models Wh...
REDDIT
Flutter Video trimmer
Hi everyone, Weâre building a Flutter app that requires video uploads with a maximum duration of 30 seconds. We tried implementing video trimming on the client side, but weâre facing issues across...
REDDIT
I replaced flutter_rust_bridge with pure dart:ffi â build time cut in half
TL;DR: I removed flutter_rust_bridge and wrote manual dart:ffi bindings for a small Rust core. Result: 18 min â 9 min build time, 12 MB â 7.1 MB APK, and full control over memory. Why I Dropped fl...
HACKERNEWS
Show HN: FluxDown – Free download manager built with Rust and Flutter
Article URL: https://fluxdown.zerx.dev Comments URL: https://news.ycombinator.com/item?id=47032136 Points: 1 # Comments: 0
DEVTO
FluxDown: A Free Download Manager Built with Rust + Flutter
I've been working on a download manager called FluxDown that handles multiple protocols in one app. The backend is written in Rust on top of Tokio, and the GUI uses Flutter with shadcn-style component...
DEVTO
Why I Built Fluxy: Rethinking Flutter Architecture
Flutter is an incredible UI toolkit. But as applications grow, their architecture often becomes fragmented, verbose, and hard to reason about. After working on multiple production Flutter apps and exp...
REDDIT
What's different between real programmer and vibe coder?
Hey , guys Im confused . for real what's different between written code by ai and write code with our brain, what makes progress and improvement possible? in here speed is matter or code quality? and ...
REDDIT
Flutter APK size doubled after increasing minSdkVersion to 23 â normal?
My Flutter release APK went from ~55 MB to 123 MB after increasing minSdkVersion to 23. Split-per-ABI builds are ~44 MB each, so I assume the default build is generating a universal APK with all ABIs....