Checkout - Added Scroll support, and CheckoutForm

This commit is contained in:
Matthew Patrick 2022-04-28 11:30:56 +07:00
parent 12984751b5
commit 9beccc44ff

View file

@ -19,7 +19,13 @@ class _CheckoutState extends State<Checkout> {
backgroundColor: const Color(0xff212226),
),
body: SafeArea(
child: Text('Checkout'),
child: SingleChildScrollView(
child: Column(
children: [
CheckoutForm(),
],
),
),
),
);
}