
Flutter
Flutter is an open source framework by Google for building beautiful, natively compiled, multi-platform applications from a single codebase.
53 posts
High-Performance Canvas Rendering
Efficient rendering strategies for complex, interactive scenes using Flutter Canvas, GPU batching, spatial indexing, and debugging techniques.
20 min read

Dart VM-Specific Pragma Annotations
Tools that work with Dart programs may accept hints to guide their behavior as pragma annotations on declarations. Each tool decides which hints it accepts, what they mean, and whether and how they apply to sub-parts of the annotated entity.
3 min read

Microbenchmarks are experiments
Benchmarks are not just about numbers—they are experiments that need interpretation. This post dissects a Dart vs JavaScript microbenchmark, illustrating why cool animations often mask the real value: insightful analysis. Numbers without context are just as meaningful as numerology
12 min read
Garbage Collection
The Dart VM has a generational garbage collector with two generations. The new generation is collected by a parallel, stop-the-world semispace scavenger. The old generation is collected by concurrent-mark-concurrent-sweep or by concurrent-mark-parallel-compact.
11 min read

Effective Animations in Flutter
How to create efficient and smooth animations in Flutter by optimizing refresh rates, using RepaintBoundary, managing Canvas effectively, and leveraging custom tickers. This guide provides key strategies to minimize performance issues and craft fluid animations without overwhelming your system.
4 min read


Flutter Dev Podcast #46 - Flutter Navigation
Who would have thought that three grown adults could spend an entire hour discussing how to transition from one app screen to another? However, don’t be quick to jump to conclusions...
1 min read
Dart & Flutter: Full duplex connection
Stream about a full-duplex connection, TCP/IP and WebSockets in Flutter and Dart

Debugging Flutter Apps with MITM Proxy
Learn to efficiently debug your Flutter app's HTTP requests using MITM proxy, avoiding the hassle of logs and late DevTools introspection.
2 min read
Understanding JWT
Explore JWT: A secure method for transmitting information as a JSON object, digitally signed for verification and trust, essential for web authentication
2 min read