Kanell/0, Yet Another Pipeline-like Library
When I started to work with Dart and Flutter, few weeks ago, I was looking for something like Erlang finite state machine or Elixir Plug . The first o…
Tech news from the best sources
When I started to work with Dart and Flutter, few weeks ago, I was looking for something like Erlang finite state machine or Elixir Plug . The first o…
Flutter Core Widgets — Part 1 A reference guide to the ~50 most-used Flutter widgets, grouped by category. Each entry includes a short description, a …
Flutter Layout — Complete Guide 1. The Core Mental Model Flutter layout runs on one rule, repeated at every level of the widget tree: Constraints go d…
This article is a condensed English adaptation of the original Arabic tutorial published on HosteDay. Original article: https://hosteday.com/blog/6/bu…
Every one of us has been here. The designer opens Figma and changes the primary color from #6C63FF to #5B52E8 . A small update (they think). Our relea…
The paradigm of Artificial Intelligence is undergoing a fundamental shift. We are moving rapidly from the era of stateless chat completions —where an …
I spent the last several months solo-building Tuneline , a cross-platform media player, from a single Flutter codebase that ships native apps to macOS…
Google discontinued flutter_adaptive_scaffold in April 2025 — not because it was unpopular (it still pulls thousands of downloads a week), but to refo…
Building Flutter Ads: A Cross-Platform Ad SDK for Flutter Over the years I've built multiple Flutter applications and repeatedly faced the same challe…
I've interviewed at 6+ Flutter companies over the past year and noticed the same questions keep coming up — regardless of the company size or role lev…
TL;DR A great agent skill is not a pile of documentation. It is a tightly scoped SKILL.md with a description engineered for discovery, ruthless concis…
Hi Dev Community! I am a CS graduate. I want to build an industry-standard full-stack app for my portfolio on my own. Recently, I have learned the bas…
Last weekend, I unlocked my car using my own Dart package (according to pub.dev, the first one ever built for it). I walked down to the parking lot, o…
TL;DR: I built a cross-platform scientific calculator in Flutter that lets you speak math equations out loud, point your camera at handwritten formula…
If you're building Flutter apps, you'll spend a lot of time working with user input. Whether it's a login form, signup page, search bar, or profile sc…
After 5+ years of Flutter development, I got tired of setting up the same boilerplate every project. So I built SM CLI Install dart pub global activat…
— flutter_markdown re-parses the entire response string on every streamed token. The fix is an append-only AST with monotonic node IDs used as Flutter…
Hey Dev.to Community I've been a Flutter/Firebase developer for the past couple of years, and I recently shipped something I'm genuinely proud of — Sc…
RetailSale is an open-source retail and inventory management system built with Flutter, and the project is open for contributions from developers, tes…
One-shot operations as first-class state, with declarative listeners. More in Github . An Action is a tiny piece of reactive state that represents a s…
Dart for Java Developers A deep, practical mapping from Java to Dart: syntax, type system, concurrency, tooling, Flutter, and backend (Shelf, Relic, S…
Writing programs in OOP after more than 10 years of Erlang, Elixir and other Functional languages is kinda difficult. Instead of starting with a compl…
Dart's concurrency model is unusual: single-threaded event loop by default, with explicit Isolates for true parallelism. No shared memory, no race con…