Answers for "change the backarrow color in appbar flutter"

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

flutter appbar foregroundcolor

appBar: AppBar(
	title: Text('AppBar'),
    foregroundColor: Colors.black; // appbar text color
   ),
Posted by: Guest on August-20-2021

Code answers related to "change the backarrow color in appbar flutter"

Browse Popular Code Answers by Language