REDDIT
Do I need separate import logic for every broker in my Flutter trading journal app?
Iâm building a trading journal + portfolio management app in Flutter. The idea is simple: users upload their daily/monthly tradebook CSV/XLS from their broker, and the app analyzes things like: Intr...
REDDIT
I made a mysql package using ffi with Rust
Hey guys, just published my mysql connection package using ffi w/ Rust, its a wrapper around the mysql_async lib, i called it turbo_mysql. I know ur all gonna think "oh great, another mysql lib" and u...
REDDIT
Half of Android apps ignore proxy settings, so I built a Flutter app to capture their traffic anyway
I maintain fluxzy, a MITM library and cli tool. Capturing Android traffic with any MITM tool is painful because half the apps ignore HTTP proxy settings. So I built a small VPN-to-SOCKS5 tunnel app to...
REDDIT
The most convenient way to debug Firebase Database on Flutter
I recommend reading the article on our website (there are screenshots). Very simple guide. In short: Step 1. Install and run debugger: dart pub global activate network_debugger flutter pub add fireba...
REDDIT
I got tired of on-device LLMs crashing my mobile apps, so I built a "Managed" runtime (14k LOC)
I have played around with loads of on-device AI demo for 30 sec they look mesmerising, then the phone turns into a heater and the OS kilss the app dies to memory spikes . Spent last few months buildin...
REDDIT
Flutter: How to use the SIZEDBOX WIDGET In 1 Minute
Hi guys, I'm back with another short tutorial on the the SizedBox widget. Let me know what other widgets you like me to cover next.
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....
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,...