Flutter :-How to put the view in the Center and Bottom of the screen?

前端 未结 3 547
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-29 04:04

I am creating the tutorial screen in which the two views like:- one is should be in the center of the screen and another should at the bottom of the screen.

But my bo

3条回答
  •  离开以前
    2021-01-29 04:53

    Put the bottom Container inside Align widget and use alignment: Alignment.bottomCenter .:

                    Align(
                      alignment: Alignment.bottomCenter,
                        child: Container(
                        height: 80.0,
                        color: Colors.purple,
                        child: Row(
    
                        ... .... ... // other code
    

提交回复
热议问题