15 lines
320 B
Dart
15 lines
320 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class Checkout extends StatefulWidget {
|
|
Checkout({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<Checkout> createState() => _CheckoutState();
|
|
}
|
|
|
|
class _CheckoutState extends State<Checkout> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container();
|
|
}
|
|
}
|