Created
December 12, 2019 15:36
-
-
Save shubie/7948ec531b9f20bb67157a442f4897ef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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