[j Flutter] 상단(AppBar) 뒤로가기 버튼 색상변경 & 아이콘 변경
- 뒤로가기 버튼색을 변경하는 경우 main.dart에서 AppBar -> iconTheme 속성을 사용. appBar: AppBar( iconTheme: IconThemeData( color: Colors.black,//색변경 ), title: Text("Main"), centerTitle: true, ), - 특정 뒤로가기 버튼색을 변경 & 뒤로가기를 눌렀을 때 동작지정하는 경우 , 뒤로가기 버튼모양도 바꿔줄수있다. appBar: AppBar( title: Text('Main'), leading: IconButton( onPressed: () { Navigator.pop(context); //뒤로가기 }, color: Colors.purple, icon: Icon(Icons.arrow_back)), ..