Added a placeholder text in Checkout

This commit is contained in:
Matthew Patrick 2022-04-24 17:48:48 +07:00
parent 02050d6077
commit 134475f4a8

View file

@ -10,6 +10,14 @@ class Checkout extends StatefulWidget {
class _CheckoutState extends State<Checkout> {
@override
Widget build(BuildContext context) {
return Container();
return Scaffold(
backgroundColor: const Color(0xff1b1c1e),
appBar: AppBar(
title: const Text('Nekoya'),
centerTitle: true,
backgroundColor: const Color(0xff212226),
),
body: Text('Checkout'),
);
}
}