REDDIT
AI that converts large codebases â useful or pointless?
Iâm exploring a dev tool idea and wanted some honest feedback from the community. There are three problems I keep seeing developers struggle with: Understanding large codebases Joining a project wit...
MASTODON
macOS端末は、MacBook Air M3とMac mini M4がある。Flutterのビルドなど、miniのほうが断然速い(様に感じる)。実機を接続した作業はMacBook…
macOS端末は、MacBook Air M3とMac mini M4がある。Flutterのビルドなど、miniのほうが断然速い(様に感じる)。実機を接続した作業はMacBook Airのほうがやりやすいが、miniでもできなくもない。という使い分け。実機とFlutterビルドが両方必要な状況ではminiを使うのがよいが、MacBook Air側でうっかりビルドが始めてしまって、少し重くてがっか...
REDDIT
Whatâs your preferred IDE for Flutter development?
Curious what everyoneâs using for Flutter dev: VS Code, Android Studio, or something else? And any must-have plugins youâd recommend?
REDDIT
Shorebird (Flutter Code Push) â is anyone actually using this in production?
Been looking into Shorebird, the code push solution that lets you push Dart updates directly to users without going through store review. The pitch sounds almost too good to be true, so I want a real ...
MASTODON
Building AI-Powered Flutter Apps https://lemmy.world/post/43928372
Building AI-Powered Flutter Apps https://lemmy.world/post/43928372
REDDIT
Best DSA path for Google STEP 2027 (Python user, no C++/Java)
Hi everyone! Iâm preparing for Google STEP 2027. I know Python at an intermediate level, but I donât know C++ or Java. I want to learn data structures and algorithms specifically for LeetCode and ...
REDDIT
I built an enterprise-grade HTTP engine for Flutter focusing on Isolate-based JSON parsing and Offline-First resilience.
Hi everyone, Iâve been working on a Flutter networking package called VoltNet for the past year, and I just released v2.0. The goal was to solve a recurring issue I faced in enterprise apps: network...
REDDIT
Cubit to Cubit communication made easy
Made a very simple event bus to help me with cubit to cubit communication, as it was always ugly to elevate a stream to the repository and keep track of. You subscribe with: onRefresh<Profile>(load); ...
REDDIT
My first Flutter dart package: Azure Speech to text
Hello! I've just released my first Dart/Flutter package: Azure STT Flutter, a library that provides real-time Speech-to-Text transcription using Microsoft Azure Cognitive Services. You can find it her...
REDDIT
How do you cache network images in Flutter so they still load when the user is offline?
Hi everyone, Iâm working on a Flutter application where images are loaded from the network using URLs. I want to make sure that if a user opens the app once (with internet), the images are stored lo...
REDDIT
Best practices for building flutter bridges
What are the dos and don'ts when building a bridge between flutter dart and custom SDKs? If the answer is depends on SDK language/target OS then lets say Java and Android.
REDDIT
sync_offline_requests: 1.1.1 - Open-source Flutter package for automatic offline API sync
One common problem in mobile apps is handling API requests when the user is offline. If the request fails because there is no internet, the data is lost unless you implement a queue system. So I built...
REDDIT
I learned flutter , what's next ?
Hi Flutter Developers, I have learned Flutter and mastered the basics, including: Widgets Packages Networking (APIs and local storage) State management (BLoC, Provider) What should I do next? Do you s...
REDDIT
What are the most common issues you meet when using AI to code Flutter
For myself, I always see AI forgot how dependency injection is implemented. The AI always create new instance of Repository inside a Controller. Solution: I added a DI rules as a skill for agent, it's...