Answers for "top center flutter"

0

flutter float right

Center(
  child: Container(
    height: 120.0,
    width: 120.0,
    color: Colors.blue[50],
    child: Align(
      alignment: Alignment.topRight,
      child: FlutterLogo(
        size: 60,
      ),
    ),
  ),
)
Posted by: Guest on April-07-2020
0

flutter move container to top center

Center(  child: Container( alignment: Alignment(0.0, -1.0),  ),);
Posted by: Guest on March-29-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language