Skip to content

Instantly share code, notes, and snippets.

@iamabs2001
Created June 28, 2021 08:22
Show Gist options
  • Save iamabs2001/dd5dd9e0185eebf338eb602c626483cd to your computer and use it in GitHub Desktop.
Save iamabs2001/dd5dd9e0185eebf338eb602c626483cd to your computer and use it in GitHub Desktop.
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.blue[600],
appBar: AppBar(
title: Text(appBarTitle),
elevation: 0,
backgroundColor: Colors.blue[600],
),
drawer: getDrawer(),
body: Container(
height: double.infinity,
width: double.infinity,
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.only(
topLeft: Radius.circular(10),
topRight: Radius.circular(10),
)),
child: Center(child:Text('Hello world')),
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment