Answers for "onpressed change background color of selected item flutter"

CSS
3

how to change the color of the back button in app bar flutter

appBar: AppBar(
  iconTheme: IconThemeData(
    color: Colors.black, //change your color here
  ),
  title: Text("Sample"),
  centerTitle: true,
),
Posted by: Guest on July-17-2020
1

how to change background color in ElevateButton flutter

how to change background color in ElevateButton flutter
style: ButtonStyle(backgroundColor: MaterialStateProperty.all(Colors.red)),
Posted by: Guest on November-01-2021

Code answers related to "onpressed change background color of selected item flutter"

Browse Popular Code Answers by Language