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
Use this to get required view
Stack(children: [ Align(alignment: Alignment.center, child: Container(width: 100, height: 100, color: Colors.redAccent,),), Align(alignment: Alignment.bottomCenter, child: Container(height: 100, color: Colors.purpleAccent,),) ],)