feat: ui confirm payment dialog

This commit is contained in:
efrilm 2025-08-02 13:27:21 +07:00
parent 79d606a08e
commit 7b64ca2bb3
4 changed files with 2480 additions and 1497 deletions

View File

@ -0,0 +1,76 @@
import 'package:enaklo_pos/core/components/custom_modal_dialog.dart';
import 'package:enaklo_pos/core/components/spaces.dart';
import 'package:enaklo_pos/core/constants/colors.dart';
import 'package:flutter/material.dart';
class SaveDialog extends StatelessWidget {
const SaveDialog({super.key});
@override
Widget build(BuildContext context) {
return CustomModalDialog(
title: 'Pilih Aksi',
subtitle: 'Lanjutkan proses pesanan atau simpan untuk nanti.',
contentPadding:
const EdgeInsets.symmetric(horizontal: 16.0, vertical: 24.0),
child: Column(
children: [
_item(
icon: Icons.schedule_outlined,
title: 'Bayar Nanti',
subtitle: 'Simpan pesanan dan bayar nanti',
onTap: () {},
),
SpaceHeight(16.0),
_item(
icon: Icons.shopping_cart_checkout_outlined,
title: 'Tambahkan Pesanan',
subtitle: 'ambah item ke daftar pesanan',
onTap: () {},
),
],
),
);
}
Widget _item({
required IconData icon,
required String title,
required String subtitle,
required Function() onTap,
}) {
return GestureDetector(
onTap: onTap,
child: Container(
padding: const EdgeInsets.symmetric(horizontal: 16.0, vertical: 12.0),
decoration: BoxDecoration(
color: AppColors.white,
borderRadius: BorderRadius.circular(8.0),
border: Border.all(
color: AppColors.grey,
width: 1.0,
),
),
child: Row(
children: [
Icon(icon, color: AppColors.primary, size: 26.0),
SpaceWidth(12.0),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
title,
style: const TextStyle(fontWeight: FontWeight.w600),
),
Text(
subtitle,
style: const TextStyle(color: Colors.grey),
),
],
),
],
),
),
);
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,74 @@
import 'package:enaklo_pos/core/components/components.dart';
import 'package:enaklo_pos/core/constants/colors.dart';
import 'package:enaklo_pos/core/extensions/build_context_ext.dart';
import 'package:flutter/material.dart';
class ConfirmPaymentTitle extends StatelessWidget {
final String title;
final String? subtitle;
final bool isBack;
final List<Widget>? actionWidget;
const ConfirmPaymentTitle({
super.key,
required this.title,
this.subtitle,
this.isBack = true,
this.actionWidget,
});
@override
Widget build(BuildContext context) {
return Container(
height: context.deviceHeight * 0.1,
padding: const EdgeInsets.symmetric(horizontal: 16.0, vertical: 12.0),
decoration: BoxDecoration(
color: AppColors.white,
border: Border(
bottom: BorderSide(
color: AppColors.grey,
width: 1.0,
),
),
),
child: Row(
children: [
if (isBack) ...[
GestureDetector(
onTap: () => context.pop(),
child: Icon(
Icons.arrow_back,
color: AppColors.primary,
size: 24,
),
),
SpaceWidth(16),
],
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
title,
style: TextStyle(
color: AppColors.black,
fontSize: 20,
fontWeight: FontWeight.w600,
),
),
if (subtitle != null) ...[
const SizedBox(height: 4.0),
Text(
subtitle!,
style:
const TextStyle(fontSize: 14.0, color: AppColors.grey),
),
]
],
),
),
if (actionWidget != null) ...actionWidget!,
],
),
);
}
}