feat: update void dialog
This commit is contained in:
parent
ee38b6218f
commit
c906d5ebe5
@ -90,24 +90,27 @@ class _VoidDialogState extends State<VoidDialog> {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
if (widget.selectedItems.isNotEmpty)
|
if (widget.selectedItems.isNotEmpty)
|
||||||
Column(
|
Padding(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
padding: const EdgeInsets.only(top: 16.0),
|
||||||
children: [
|
child: Column(
|
||||||
Text(
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
'Pesanan yang akan di void',
|
children: [
|
||||||
style: const TextStyle(
|
Text(
|
||||||
fontSize: 14,
|
'Pesanan yang akan di void',
|
||||||
fontWeight: FontWeight.w600,
|
style: const TextStyle(
|
||||||
color: AppColors.black,
|
fontSize: 14,
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
color: AppColors.black,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
SpaceHeight(12),
|
||||||
SpaceHeight(12),
|
Column(
|
||||||
Column(
|
children: widget.selectedItems
|
||||||
children: widget.selectedItems
|
.map((item) => _item(context, item))
|
||||||
.map((item) => _item(context, item))
|
.toList(),
|
||||||
.toList(),
|
),
|
||||||
),
|
],
|
||||||
],
|
),
|
||||||
),
|
),
|
||||||
SpaceHeight(16),
|
SpaceHeight(16),
|
||||||
CustomTextField(
|
CustomTextField(
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user