Answers for "flutter appbar back arrow color"

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
0

flutter change appbar back icon

appBar: AppBar(
        leading: IconButton(
          onPressed: () {
            Navigator.pop(context);
          },
          icon: Icon(Icons.home_outlined),
        ),
        title: Text(
          "Second Page",
          style: TextStyle(color: Colors.black),
        ),
      ),
Posted by: Guest on October-20-2021

Code answers related to "flutter appbar back arrow color"

Browse Popular Code Answers by Language