Answers for "change navgiation buttoon on app bar color 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
0

change color icon tabbar flutter

appBar: AppBar(
        brightness: Brightness.dark,
        iconTheme: IconThemeData(color: Colors.white),
        title: Text("Title TabBar"),
)
Posted by: Guest on June-02-2020

Code answers related to "change navgiation buttoon on app bar color flutter"

Browse Popular Code Answers by Language