Skip to content

Instantly share code, notes, and snippets.

@shubie
Created December 12, 2019 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shubie/7948ec531b9f20bb67157a442f4897ef to your computer and use it in GitHub Desktop.
Save shubie/7948ec531b9f20bb67157a442f4897ef to your computer and use it in GitHub Desktop.
class SuccesfulPurchase extends StatelessWidget {
@override
Widget build(BuildContext context) {
Size size = MediaQuery.of(context).size;
return SafeArea(
child: Scaffold(
body: Column(
children: <Widget>[],
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment