BackButton

개발/Flutter

AlertDialog를 사용자가 종료할 수 없게 만들기

AlertDialog 창 외부 화면을 눌러도 안꺼지게 막기 showDialog의 barrierDismissible 값을 false로 설정한다. 뒤로가기 버튼 막기 show dialog의 builder의 최상위 위젯을 뒤로가기 버튼에 대한 콜백을 설정할 수 있는 WillPopScope위젯으로 두고 onWillPop에 () async => false 콜백을 설정해 아무일도 일어나지 않게 함 둘 다 적용하면 아래와 같다. showDialog( context: context, barrierDismissible: false, builder: (context) { return WillPopScope( onWillPop: () async => false, child: AlertDialog( ... ), ); } ) ..

개발/Flutter

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

하위 페이지로 이동할 경우 자동으로 뒤로가기 버튼이 앱 바에 생기게 되는데 이를 없앨 수 있다. 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 reaso..

leebera_
'BackButton' 태그의 글 목록