개발/Flutter

뒤로가기 (leading) 버튼 자동 생성 막기

leebera_ 2022. 5. 8. 19:10

하위 페이지로 이동할 경우 자동으로 뒤로가기 버튼이 앱 바에 생기게 되는데 이를 없앨 수 있다.

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