how to make the size of a material boutton biger flutter
MaterialButton(
onPressed: () {},
child: Container(
width: double.infinity,
height: 25,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
color: Colors.blue,
),
child: Center(
child: Text(
'LOOGIN',
style: TextStyle(
color: Colors.white,
fontSize: 15.0,
fontWeight: FontWeight.bold,
),
),
),
),
),