하위 페이지로 이동할 경우 자동으로 뒤로가기 버튼이 앱 바에 생기게 되는데 이를 없앨 수 있다.
AppBar 내의 automaticallyImplyLeading을 false로 준다.
AppBar(
title: const Text('appbar title'),
automaticallyImplyLeading: false,
)
참고
flutter remove back button on appbar
I am wondering, if anyone knows of a way to remove the back button that shows up on the appBar in a flutter app when you use Navigator.pushNamed to go to another page. The reason I do not want it o...
stackoverflow.com
'개발 > Flutter' 카테고리의 다른 글
입력란에 값 보이지 않게 하기 (비밀번호 입력) (0) | 2022.05.09 |
---|---|
[Error] RenderBox was not laid out (0) | 2022.05.08 |
앱 이름 변경 (0) | 2022.04.14 |
ScrollView와 ListView 스크롤 효과 없애기 (0) | 2022.04.11 |
[Error] bottom overflowed by pixels (0) | 2022.04.08 |