Stack and Positioned in Flutter — a practical guide to Flutter Stack Positioned with clear examples you can reuse in real projects.
Flutter Tutorial Series (34/107). Prefer one article? Read the complete Flutter tutorial.
Short description
Useful for badges on avatars, image overlays, and custom layouts.
Stack
Stack(
children: [
Image.asset('assets/hero.png'),
const Positioned(right: 8, top: 8, child: Icon(Icons.favorite)),
],
);