REDDIT
Serverpod just opened a webpage when running pub get!
I have never had a package trigger opening of a webpage. I think this is unacceptable for a variety of reasons and shows a total lack of judgement. Why is this a problem? Well, the page could contain ...
REDDIT
I got tired of manually syncing APIs with Dart â so I built a framework that generates the Dart SDK automatically
In onedef, the struct is the API contract. type GetUserAPI struct { onedef.GET `path:"/users/{id}"` Request struct{ ID string } Response User } func (h *GetUserAPI) Handle(ctx context.Context) error...
REDDIT
Flutter + Rust
I'm building a Flutter app and want to include Rust for some of the business logic. I found that there are different approaches, however: https://pub.dev/packages/flutter_rust_bridge - This seems to b...
REDDIT
M-Security: high-performance Flutter security SDK powered entirely by Rust (no platform channels, no Dart crypto)
In real-world Flutter apps, common security issues keep recurring. Secrets often leak through reverse engineering, API keys and tokens appear in binaries, sensitive data is stored locally with weak pr...
REDDIT
Moving from MVVM to Clean Architecture in Flutter as app scales â advice?
Hey devs ð I started my Flutter project using MVVM and itâs been working fine so far. But now the app is getting bigger (more features, more complexity), and Iâm thinking of moving to Clean Arc...
REDDIT
"Colorfull" now comes with SKILL.md to build and use color palettes.
Currently using it with Claude to discuss and easily generate color palettes based on PRDs that I make. Also available on pub.dev.
REDDIT
Flutter Tips - Adding Time Advanced Understanding
Did you know that final date = DateTime(2025,10,26,0,0,0); final datePlus1 = date.add(const Duration(days: 1)); and final date = DateTime(2025,10,26,0,0,0); final datePlusOneDay = DateTime(date.year, ...
REDDIT
What state management do you use for large-scale flutter applications?
I am creating a flutter app for that project I need a better state management so I have two options bloc or riverpod. which one is more suitable for large-scale applications?
REDDIT
[Package] Nested Scrollables
Hello ! I had to tinker a bit with nested scrolling on an app i'm working on, and i didn't find a good solution to my needs with existing packages, so I made one, mainly to improve interaction between...
GITHUB
Update changelog for 3.41.6 (#184170)
Update the changelog for 4.41.6. Includes: #183885 #184040 #184025
REDDIT
I built an open-source video pool manager for TikTok/Reels-style feeds â 3 players handle infinite scroll with zero jank. Looking for feedback
Hey r/FlutterDev, I've been building video feed apps and kept hitting the same wall: creating/destroying VideoPlayerController on every scroll kills performance. Decoder teardown causes jank spikes, G...