Dart & Flutter News

Aggregated from across the ecosystem

allmediumgithubredditHNdevtopubdev
PUBDEV
flutter_body_part_selector v1.2.1
pub.dev New Packages · Jan 26, 2026
Interactive body selector for Flutter. Tap muscles on SVG body diagram or select programmatically with visual highlighting. Includes built-in assets.
REDDIT
Not everything is a widget
r/flutterdev · Jan 26, 2026
I made a short video explaining the main reason behind Flutter’s performance   submitted by   /u/miejscov [link]   [comments]
PUBDEV
mobibox_pay v1.0.8
pub.dev New Packages · Jan 26, 2026
A Flutter plugin to seamlessly integrate with the Mobibox payment gateway
PUBDEV
mozartcropper v0.0.4
pub.dev New Packages · Jan 26, 2026
A Flutter plugin for high-performance localized image cropping on Android (Native) with customizable UI in Flutter.
DEVTO
How To Convert an Image into a PDF in Flutter (Dart)
Dev.to Dart · Jan 26, 2026
Converting images to PDFs in Flutter is straightforward with the image_to_pdf_converter package. Installation flutter pub add image_to_pdf_converter Import the Package import 'package:image_to_pdf_con...
REDDIT
import '';
r/dartlang · Jan 25, 2026
Hidden feature i just discovered. Use case? When you have a barrel file that's exporting stuff and you want something from that exported stuff without using explicit imports. It's like "hey! import my...
REDDIT
Built a PDF viewer that is so smooth on the web build but the windows build is way worse (like 30hz)
r/flutterdev · Jan 25, 2026
First time ever using dart/flutter, ik it's a sin but i vibe-coded a decent looking pdf viewer bc i hated how cluttered the UIs on most popular viewers look. When i run the app on a browser it scrolls...
DEVTO
Implementing the MVI Design Pattern in Flutter: A Journey toward Scalable State Management
Dev.to Dart · Jan 25, 2026
A while back, I worked on a small Flutter project while I was learning about Providers. I tried mimicking a simple MVI design pattern from this repo and attempted to create a Flutter version of it. At...
REDDIT
Dart Devs in Sydney
r/dartlang · Jan 25, 2026
Any Dart/ Flutter developers in Sydney? Hi Everyone, I have been trying to make a dart flutter app and I need someone's second opinion. Looking to partner up with like-minded developers who love to ex...
DEVTO
📊 Two Weeks In: How My First Flutter Chart Package Is Performing on pub.dev 🚀
Dev.to Flutter · Jan 25, 2026
A couple of weeks ago, I published my first Flutter package on pub.dev: 👉 imp_trading_chart It wasn’t just “another package release” — it was the result of 2 weeks of continuous brainstorming, refact...
REDDIT
Error Handling Tutorial Problem - Learning and need help
r/dartlang · Jan 25, 2026
I'm really new to Dart and have been following the the tutorials online. I've come across an issue that I can't find an answer for and wondered if anyone could help me. [Its the one on the dart dev we...
REDDIT
FormatException rather than Argument Exception in Tutorial
r/dartlang · Jan 25, 2026
Hi, I'm really new to Dart and have been following the the tutorials online. I've come across an issue that I can't find an answer for and wondered if anyone could help me. I am following this tutoria...
REDDIT
I built a Flutter package to simplify Supabase error handling using a Result pattern (with EN/AR localization)
r/flutterdev · Jan 25, 2026
Hey everyone 👋 While working on a Flutter app with Supabase, I found myself repeatedly writing the same try/catch blocks and manually mapping different Supabase errors (Auth, Postgrest, Edge Function...
GITHUB
3.12.0-69.0.dev
Dart SDK Releases · Jan 25, 2026
3.12.0-69.0.dev
REDDIT
Gemini Library Flutter
r/flutterdev · Jan 25, 2026
Anyone can suggest me a Gemini library for Flutter?   submitted by   /u/empirebom [link]   [comments]
REDDIT
BLoC states: explicit vs Freezed copyWith
r/flutterdev · Jan 25, 2026
I keep running into this question when working with BLoC. Using explicit state classes makes things clearer and usually easier to debug, because the current state often tells the whole story. The down...
DEVTO
The Offline-First Struggle: How I Built a Robust Sync Engine for Flutter (SynapseLink)
Dev.to Dart · Jan 24, 2026
Introduction: Building a robust offline-first application is more than just caching data; it's about managing consistency. After struggling with manual sync logic in complex ERP-style apps, I decided ...
DEVTO
On-Device AI in Flutter 2026: TensorFlow Lite Tutorial (Image Classifier App) 🤖
Dev.to Flutter · Jan 24, 2026
If you've ever wanted AI in your Flutter app without Gemini API costs, this is it. Hey guys! It's Samuel once again. Today, we're going to be integrating something cool: On-device AI: no cloud, no int...
HACKERNEWS
FlutterJS – Run Flutter code, get semantic HTML output
Hacker News (Flutter) · Jan 24, 2026
Hey HN! I'm the creator of FlutterJS.The Problem: Flutter Web is great for building apps, but terrible for websites. It renders everything to Canvas/WASM, which means:2-5 MB bundles (slow on mobile)Ze...
DEVTO
CQRS Pattern in Flutter: Commands vs Queries
Dev.to Dart · Jan 24, 2026
When building Flutter applications with Clean Architecture, one pattern that dramatically improves code clarity is Command Query Responsibility Segregation (CQRS). In this article, I'll show you how I...