RawMaterialButton(
// We set the shape to a rounded rectangle
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(100.0)),
// Set the fill color
fillColor: Colors.white,
// Create a SizedBox for the dimensions
child: const SizedBox(
height: 50,
width: 200.0,
// Center everything
child: Center(
// Create the button's text
child: Text(
'Crear cuenta 🎉',
// Set the text color
style: TextStyle(color: Colors.black),
),
),
),
onPressed: () {
// Button action
},
),