diff --git a/lib/components/checkout_items.dart b/lib/components/checkout_items.dart index e69de29..0a2f987 100644 --- a/lib/components/checkout_items.dart +++ b/lib/components/checkout_items.dart @@ -0,0 +1,15 @@ +import 'package:flutter/material.dart'; + +class CheckoutItems extends StatefulWidget { + CheckoutItems({Key? key}) : super(key: key); + + @override + State createState() => _CheckoutItemsState(); +} + +class _CheckoutItemsState extends State { + @override + Widget build(BuildContext context) { + return Container(); + } +}