Checkout - Added Scroll support, and CheckoutForm
This commit is contained in:
parent
12984751b5
commit
9beccc44ff
1 changed files with 7 additions and 1 deletions
|
@ -19,7 +19,13 @@ class _CheckoutState extends State<Checkout> {
|
|||
backgroundColor: const Color(0xff212226),
|
||||
),
|
||||
body: SafeArea(
|
||||
child: Text('Checkout'),
|
||||
child: SingleChildScrollView(
|
||||
child: Column(
|
||||
children: [
|
||||
CheckoutForm(),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue