REDDIT
Tool to easily add SwiftPM support to your Flutter plugins
Since pub.dev will soon start subtracting pub points from plugins that don't support SwiftPM, I created a migration tool to help plugin authors support SwiftPM. It doesn't do everything for you, but i...
REDDIT
Why i can't write code from scratch? am i on right learning path?
I'm watching a course for learning Flutter language, if i have been watching 30 minutes of tutorial i practice about 2 hours,i break code ,change things, i rewrite it again also if i didn't understand...
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
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
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....
REDDIT
I made a custom flutter embedder to make a blender like modding workspace for D3D11 game as hobby project.
I built a full workspace-style mod using a custom Windows Flutter embedder written in Rust that renders through the game's D3D11 pipeline. The game's viewport is post-processed, and the Flutter textur...