728x90
반응형
- 뒤로가기 버튼색을 변경하는 경우
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)),
) ,
출처 :
728x90
반응형
'Flutter' 카테고리의 다른 글
[j Flutter] SharedPreferences (데이터 저장/불러오기) (0) | 2020.06.15 |
---|---|
[j Flutter] text maxLines 넘어가면 '...' 보여주기 (0) | 2020.06.10 |
[j Flutter] 앱 업데이트하기 (0) | 2020.05.19 |
[j Flutter] 스크롤뷰 바닥감지 (0) | 2020.05.14 |
[j Flutter] xcode에서 ios 빌드시 오류처리방법 (0) | 2020.05.12 |