Component - Expanded and Flexible
This Flutter UI component demonstrates how Expanded and Flexible widgets control the size of children inside a Row. They help distribute space in a flexible way, like sharing a pizza slice fairly among friends.
This Flutter UI component demonstrates how Expanded and Flexible widgets control the size of children inside a Row. They help distribute space in a flexible way, like sharing a pizza slice fairly among friends.
Scaffold
├─ AppBar
│ └─ Text
└─ Body
└─ Row
├─ Expanded
│ └─ Container
├─ Flexible
│ └─ Container
└─ Container