Dart & Flutter News

Aggregated from across the ecosystem

allmediumgithubredditHNdevtopubdev
REDDIT
I built a Flutter state management package to help beginners avoid spaghetti code
r/flutterdev · Jan 24, 2026
Hey everyone! I’d like to introduce a Flutter state management package I’ve been working on: SimpleAppState https://pub.dev/packages/simple_app_state While it's still in beta, it's becoming more and m...
REDDIT
I built a Flutter → HTML compiler. It's incomplete. Need community help.
r/flutterdev · Jan 24, 2026
Hey Flutter community, I've been working on a compiler that converts Flutter/Dart code to semantic HTML/CSS/JS instead of canvas. What I built A different approach to Flutter Web - same Flutter syntax...
REDDIT
Why another Flutter permissions plugin?
r/flutterdev · Jan 24, 2026
I’ve seen a few questions around “why another permissions plugin?”, so here’s a quick, honest comparison 👇 Feature permission_handler permission_manager Federated architecture ❌ ✅ Android 13 media pe...
REDDIT
Thoughts on Jaspr for Dart Web vs React or Flutter Web
r/dartlang · Jan 24, 2026
Hi everyone, I want to ask for opinions about Jaspr (Dart for Web). I have been a Flutter developer for over 7 years. Whenever I needed proper SEO for a Flutter Web app, I usually built a small React ...
GITHUB
3.12.0-68.0.dev
Dart SDK Releases · Jan 24, 2026
3.12.0-68.0.dev
REDDIT
Screenshot to flutter code tool
r/flutterdev · Jan 24, 2026
Just launched Screenshot to Code For everyone using flutter, Vibe Code, v0, Cursor, Bolt, Rork etc: Stop wasting credits on UI iterations. → Upload screenshot → Make unlimited AI changes → See results...
GITHUB
3.12.0-67.0.dev
Dart SDK Releases · Jan 24, 2026
3.12.0-67.0.dev
REDDIT
Is there a Flutter package you think is way higher quality than its hype suggests?
r/flutterdev · Jan 23, 2026
I like timelines_plus.   submitted by   /u/usk_7 [link]   [comments]
DEVTO
🚀 From V2.0 to R&D: How our internal tools fuel our Roadmap
Dev.to Flutter · Jan 23, 2026
Following the successful launch of Reklamof V2.0, we have shifted our engineering focus back to our proprietary internal app: Ruolis. Why? Because the best way to deliver cutting-edge tech to our clie...
DEVTO
Your App Worked Perfectly… Until the OS Killed It
Dev.to Dart · Jan 23, 2026
A production story from real apps. For a long time, I thought process death was an edge case. Something you read about in docs. Something that might happen, but not in real life. After all, my apps wo...
GITHUB
3.12.0-66.0.dev
Dart SDK Releases · Jan 23, 2026
3.12.0-66.0.dev
REDDIT
We got a Flutter game working in Discord
r/flutterdev · Jan 23, 2026
If anybody was eyeing Discord as a new distribution platform for their game/app in Flutter, here is a short article describing challenges that you might encounter and how we solved them for our own ga...
GITHUB
3.12.0-65.0.dev
Dart SDK Releases · Jan 23, 2026
3.12.0-65.0.dev
DEVTO
[Boost]
Dev.to Dart · Jan 23, 2026
Dart Frog Part 3: Connecting Flutter to Your Dart Backend (Full-Stack Todo Demo) 🐸 Samuel Adekunle ・ Jan 21 #dart #fullstack #flutter #techwithsam
GITHUB
3.12.0-64.0.dev
Dart SDK Releases · Jan 23, 2026
3.12.0-64.0.dev
REDDIT
Develop Flutter iOS apps on Windows with a real iPhone and Flutter debug mode
r/flutterdev · Jan 23, 2026
Hey, everyone! I want to share an open source tool I wrote that allows developing Flutter iOS apps on Windows using a physical iOS devices, including Flutter debug sessions and hot reload. Repo: https...
REDDIT
How to create iOS Home Widgets with Flutter
r/flutterdev · Jan 23, 2026
All apps now ship with home widgets. In this guide, we will walk through the entire process from the manual configuration in Xcode to automating the entire workflow   submitted by   /u/mcfly-d...
DEVTO
Why I Chose Flutter — And Why I’m Still Betting on It in 2026
Dev.to Dart · Jan 23, 2026
When I started my journey as a mobile developer, I wanted one thing: build fast, scalable apps without sacrificing performance or UI quality. That’s when I chose Flutter — and after 3+ years of real-w...
REDDIT
Use protobuf not json
r/flutterdev · Jan 23, 2026
Protobuf use to be hard but with ai it's easy. So much so that the is no longer a reason to use json. Use ai to generate the pb files and the pb compiler to generate the dar/js classes. You now have a...
DEVTO
Flutter 多環境配置完整指南
Dev.to Flutter · Jan 23, 2026
概述 什麼是多環境配置 多環境配置讓你能在同一個 App 專案中建立不同的環境版本(如 Development、Staging、Production),每個環境可以有: 不同的 API 端點 不同的 App 名稱(例如:「MyApp [DEV]」vs「MyApp」) 不同的 Bundle/Application ID(可同時安裝在同一裝置) 不同的 App Icon 和 Launch Image ...