Added an empty Checkout screen
This commit is contained in:
parent
7a169559ac
commit
0b04adc430
1 changed files with 15 additions and 0 deletions
15
lib/screens/checkout.dart
Normal file
15
lib/screens/checkout.dart
Normal 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();
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue