checkout_form - Added an empty widget
This commit is contained in:
parent
ff4c747ef3
commit
6b87362ae0
1 changed files with 16 additions and 0 deletions
|
@ -1 +1,17 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_form_builder/flutter_form_builder.dart';
|
||||
import 'package:nekoya_flutter/api/api.dart';
|
||||
|
||||
class CheckoutForm extends StatefulWidget {
|
||||
CheckoutForm({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
State<CheckoutForm> createState() => _CheckoutFormState();
|
||||
}
|
||||
|
||||
class _CheckoutFormState extends State<CheckoutForm> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue