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
Put the bottom Container inside Align widget and use alignment: Alignment.bottomCenter .:
Container
Align
alignment: Alignment.bottomCenter
Align( alignment: Alignment.bottomCenter, child: Container( height: 80.0, color: Colors.purple, child: Row( ... .... ... // other code