checkout - Linked checkout_items component

This commit is contained in:
Matthew Patrick 2022-04-28 13:58:21 +07:00
parent 55ee837fbe
commit 4b22f95108

View file

@ -1,5 +1,6 @@
import 'package:flutter/material.dart';
import 'package:nekoya_flutter/components/checkout_form.dart';
import 'package:nekoya_flutter/components/checkout_items.dart';
class Checkout extends StatefulWidget {
const Checkout({Key? key}) : super(key: key);
@ -22,6 +23,7 @@ class _CheckoutState extends State<Checkout> {
child: SingleChildScrollView(
child: Column(
children: [
CheckoutItems(),
CheckoutForm(),
],
),