How to change background color of Elevated Button in flutter
ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Colors.amber,
),
child: Text('ElevatedButton'),
onPressed: () {},
),