Commit bdf5a398 authored by Dio Maulana's avatar Dio Maulana

fix viewbill size divider

parent 50dc8a53
......@@ -512,6 +512,11 @@ class CoreBill extends StatelessWidget {
isHistory: isHistory,
tableStatus: dataBill[0].tableStatus,
),
(dataBill[0].tableStatus == tableStatusOpen)
? const SizedBox(
height: 24,
)
: const SizedBox(),
(dataBill[0].tableStatus == tableStatusOpen)
? const AddMoreOrder()
: const SizedBox(),
......@@ -1837,12 +1842,7 @@ class AddMoreOrder extends StatelessWidget {
color: backgroundWhite,
padding: const EdgeInsets.symmetric(horizontal: paddingLeftRight),
// color: Colors.red,
child: Column(
children: [
const SizedBox(
height: 24,
),
Row(
child: Row(
children: [
Expanded(
child: Container(
......@@ -1890,8 +1890,6 @@ class AddMoreOrder extends StatelessWidget {
)
],
),
],
),
);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment