Added an empty Checkout screen

This commit is contained in:
Matthew Patrick 2022-04-24 17:37:32 +07:00
parent 7a169559ac
commit 0b04adc430

15
lib/screens/checkout.dart Normal file
View file

@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
class Checkout extends StatefulWidget {
Checkout({Key? key}) : super(key: key);
@override
State<Checkout> createState() => _CheckoutState();
}
class _CheckoutState extends State<Checkout> {
@override
Widget build(BuildContext context) {
return Container();
}
}