Screenshot of a mobile app ui design.
CodePudding user response:
Play with this widget and follow
CodePudding user response:
You can use like this:
Scaffold (
backgroundColor: Colors.red,
body: Align(
alignment: Alignment.bottomCenter,
child: Container(
height: MediaQuery.of(context).size.height * 0.6,
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.only(topLeft: Radius.circular(12),topRight: Radius.circular(12)),
),
),
)
)