How to position a container to top center Flutter code example
Example: flutter move container to top center
Center( child: Container( alignment: Alignment(0.0, -1.0), ),);
Center( child: Container( alignment: Alignment(0.0, -1.0), ),);