Answers for "appbar flutter back button"

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
2

flutter remove back button on appbar

//add to the appBAr:
automaticallyImplyLeading: false,
Posted by: Guest on July-18-2021

Code answers related to "appbar flutter back button"

Browse Popular Code Answers by Language