Widget build(BuildContext context) {
//get the height and width of a standard appBar to use with custom Appbar
var appBarWidth = MediaQuery.of(context).size.width;
var appBarHeight = AppBar().preferredSize.height;
return Scaffold(
appBar: PreferredSize(
preferredSize: Size(appBarWidth, appBarHeight),
child: MyAppBar(),
),