flutter container full width code example
Example 1: flutter container width of parent
width: double.infinity,
height: double.infinity
Example 2: set container height flutter 25% of screen
MediaQuery.of(context).size.height * 0.25
width: double.infinity,
height: double.infinity
MediaQuery.of(context).size.height * 0.25