15 lines
350 B
Dart
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();
|
|
}
|
|
}
|