@override Widget build(BuildContext context) { return WillPopScope( onWillPop: () async { print('The user tries to pop()'); return false; }, child: Scaffold( appBar: AppBar( title: const Text("Exit app warning"), ), body: Container(), ), ); }
출처 : Prevent back button from closing the app