flutter width infinity code example
Example 1: flutter container width of parent
width: double.infinity,
height: double.infinity
Example 2: flutter width infinity
SizedBox(
width: double.infinity,
// height: double.infinity,
child: RaisedButton(...),
)