Align
A widget that aligns its child within itself and optionally sizes itself based on the child's size. It is used to set elements to a specific place, for example: top left...
Align(
alignment: Alignment.topLeft,
child: Text(
'Hello World',
),
),
Last updated