Added a placeholder text in Checkout
This commit is contained in:
parent
02050d6077
commit
134475f4a8
1 changed files with 9 additions and 1 deletions
|
@ -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'),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue