Answers for "flutter remove android back button"

2

flutter remove back button on appbar

//add to the appBAr:
automaticallyImplyLeading: false,
Posted by: Guest on July-18-2021
0

flutter disable android back button

@override
Widget build(BuildContext context) {
  return new WillPopScope(
    onWillPop: () async => false,
    child: new Scaffold(
      appBar: new AppBar(
        title: new Text("data"),
        leading: new IconButton(
          icon: new Icon(Icons.ac_unit),
          onPressed: () => Navigator.of(context).pop(),
        ),
      ),
    ),
  );
}
Posted by: Guest on February-03-2021

Code answers related to "flutter remove android back button"

Browse Popular Code Answers by Language