Answers for "how to change text color to elevated button in flutter"

2

how to change the color of elevatedbutton in flutter

ElevatedButton(
  child: Text("Click Me!"),
  onPressed: () {},
  style: ButtonStyle(
    backgroundColor: MaterialStateProperty.all(Colors.red),
  ),
)
Posted by: Guest on October-09-2021
2

How to change background color of Elevated Button in flutter

ElevatedButton(
              style: ElevatedButton.styleFrom(
                primary: Colors.amber,
              ), 
              child: Text('ElevatedButton'),
              onPressed: () {},
            ),
Posted by: Guest on August-24-2021

Code answers related to "how to change text color to elevated button in flutter"

Browse Popular Code Answers by Language