app/lib/screens/checkout.dart
2022-04-25 22:28:58 +07:00

23 lines
559 B
Dart

import 'package:flutter/material.dart';
class Checkout extends StatefulWidget {
const Checkout({Key? key}) : super(key: key);
@override
State<Checkout> createState() => _CheckoutState();
}
class _CheckoutState extends State<Checkout> {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: const Color(0xff1b1c1e),
appBar: AppBar(
title: const Text('Nekoya'),
centerTitle: true,
backgroundColor: const Color(0xff212226),
),
body: const Text('Checkout'),
);
}
}