checkout_items - added stateful widget template

This commit is contained in:
Matthew Patrick 2022-04-28 13:56:12 +07:00
parent 6359d50008
commit 55ee837fbe

View file

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