app/lib/screens/checkout.dart

24 lines
559 B
Dart
Raw Normal View History

2022-04-24 12:37:32 +02:00
import 'package:flutter/material.dart';
class Checkout extends StatefulWidget {
2022-04-25 17:28:58 +02:00
const Checkout({Key? key}) : super(key: key);
2022-04-24 12:37:32 +02:00
@override
State<Checkout> createState() => _CheckoutState();
}
class _CheckoutState extends State<Checkout> {
@override
Widget build(BuildContext context) {
2022-04-24 12:48:48 +02:00
return Scaffold(
backgroundColor: const Color(0xff1b1c1e),
appBar: AppBar(
title: const Text('Nekoya'),
centerTitle: true,
backgroundColor: const Color(0xff212226),
),
2022-04-25 17:28:58 +02:00
body: const Text('Checkout'),
2022-04-24 12:48:48 +02:00
);
2022-04-24 12:37:32 +02:00
}
}