From 55ee837fbe1d0f84bb4d2f9e7f10d08000d84e41 Mon Sep 17 00:00:00 2001 From: Matthew Patrick Date: Thu, 28 Apr 2022 13:56:12 +0700 Subject: [PATCH] checkout_items - added stateful widget template --- lib/components/checkout_items.dart | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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(); + } +}