Checkout - Added SafeArea
This commit is contained in:
parent
7fef71110d
commit
12984751b5
1 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:nekoya_flutter/components/checkout_form.dart';
|
||||
|
||||
class Checkout extends StatefulWidget {
|
||||
const Checkout({Key? key}) : super(key: key);
|
||||
|
@ -17,7 +18,9 @@ class _CheckoutState extends State<Checkout> {
|
|||
centerTitle: true,
|
||||
backgroundColor: const Color(0xff212226),
|
||||
),
|
||||
body: const Text('Checkout'),
|
||||
body: SafeArea(
|
||||
child: Text('Checkout'),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue