Skip to content

Instantly share code, notes, and snippets.

@becek2n
Created May 8, 2020 16:24
Show Gist options
  • Save becek2n/e20eefe527273d61cc359b43fa69867a to your computer and use it in GitHub Desktop.
Save becek2n/e20eefe527273d61cc359b43fa69867a to your computer and use it in GitHub Desktop.
@override
Widget build(BuildContext context) {
return WillPopScope(
onWillPop: () async => false,
child : Scaffold(
appBar: AppBar(
title: Text(widget.title),
automaticallyImplyLeading: false,
backgroundColor: Colors.redAccent,
elevation: 0.0,
),
body: MainMenu(),
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment