How to change the appBar back button color

前端 未结 9 655
慢半拍i
慢半拍i 2021-01-30 11:54

I cannot figure out how to change the appBar\'s automatic back button to a different color. it\'s under a scaffold and I\'ve tried to research it but I can\'t wrap my head aroun

9条回答
  •  天涯浪人
    2021-01-30 12:57

    You can also set leading icon color globally for the app

    MaterialApp(
      theme: ThemeData(
        appBarTheme: AppBarTheme(
          iconTheme: IconThemeData(
            color: Colors.green
          )
        )
      )
    )
    

提交回复
热议问题