From 134475f4a8ab26fa8107a0322495af9eb664edf8 Mon Sep 17 00:00:00 2001 From: Matthew Patrick Date: Sun, 24 Apr 2022 17:48:48 +0700 Subject: [PATCH] Added a placeholder text in Checkout --- lib/screens/checkout.dart | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/screens/checkout.dart b/lib/screens/checkout.dart index 84675cd..e763f9a 100644 --- a/lib/screens/checkout.dart +++ b/lib/screens/checkout.dart @@ -10,6 +10,14 @@ class Checkout extends StatefulWidget { class _CheckoutState extends State { @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'), + ); } }