Checkout - Added SafeArea

This commit is contained in:
Matthew Patrick 2022-04-28 11:30:08 +07:00
parent 7fef71110d
commit 12984751b5

View file

@ -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'),
),
);
}
}