A widget that aligns its child within itself and optionally sizes itself based on the child's size.
Example
Container(
height: 120.0,
width: 120.0,
color: Colors.blue[50],
child: Align(
alignment: Alignment.topRight,
child: FlutterLogo(
size: 60,
),
),
)
Related Links