Q:

Align widget

Align(
  alignment: Alignment.topRight,
  child: Text("widget"),
)
2
Center(
  child: Container(
    height: 120.0,
    width: 120.0,
    color: Colors.blue[50],
    child: Align(
      alignment: Alignment(0.5, 0.6),
      child: FlutterLogo(
        size: 60,
      ),
    ),
  ),
)
0

New to Communities?

Join the community