49 lines
1.4 KiB
Dart
49 lines
1.4 KiB
Dart
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;
|
|
// });
|
|
// },
|
|
// ),
|
|
// ),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|