checkout_items - added stateful widget template
This commit is contained in:
parent
6359d50008
commit
55ee837fbe
1 changed files with 15 additions and 0 deletions
|
@ -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();
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue