checkout page
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
import 'package:flutter/widgets.dart';
|
||||
|
||||
import '../../../../common/theme/theme.dart';
|
||||
import '../../../components/field/field.dart';
|
||||
import '../../../components/page/page_title.dart';
|
||||
|
||||
class CheckoutRightPanel extends StatelessWidget {
|
||||
const CheckoutRightPanel({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Column(
|
||||
children: [
|
||||
PageTitle(
|
||||
title: 'Pembayaran',
|
||||
isBack: false,
|
||||
subtitle: 'Silahkan lakukan pembayaran',
|
||||
),
|
||||
Expanded(
|
||||
child: SingleChildScrollView(
|
||||
child: Column(
|
||||
children: [
|
||||
// Container(
|
||||
// padding: const EdgeInsets.all(16),
|
||||
// decoration: BoxDecoration(
|
||||
// color: AppColor.white,
|
||||
// border: Border(
|
||||
// bottom: BorderSide(color: AppColor.border, width: 1.0),
|
||||
// ),
|
||||
// ),
|
||||
// child: CustomerAutocomplete(
|
||||
// controller: customerController,
|
||||
// selectedCustomer: selectedCustomer,
|
||||
// onSelected: (customer) {
|
||||
// setState(() {
|
||||
// selectedCustomer = customer;
|
||||
// });
|
||||
// },
|
||||
// ),
|
||||
// ),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user