app/lib/components/checkout_items.dart
2022-04-28 13:56:12 +07:00

15 lines
350 B
Dart

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();
}
}