Commit bdf5a398 authored by Dio Maulana's avatar Dio Maulana

fix viewbill size divider

parent 50dc8a53
...@@ -512,6 +512,11 @@ class CoreBill extends StatelessWidget { ...@@ -512,6 +512,11 @@ class CoreBill extends StatelessWidget {
isHistory: isHistory, isHistory: isHistory,
tableStatus: dataBill[0].tableStatus, tableStatus: dataBill[0].tableStatus,
), ),
(dataBill[0].tableStatus == tableStatusOpen)
? const SizedBox(
height: 24,
)
: const SizedBox(),
(dataBill[0].tableStatus == tableStatusOpen) (dataBill[0].tableStatus == tableStatusOpen)
? const AddMoreOrder() ? const AddMoreOrder()
: const SizedBox(), : const SizedBox(),
...@@ -1837,12 +1842,7 @@ class AddMoreOrder extends StatelessWidget { ...@@ -1837,12 +1842,7 @@ class AddMoreOrder extends StatelessWidget {
color: backgroundWhite, color: backgroundWhite,
padding: const EdgeInsets.symmetric(horizontal: paddingLeftRight), padding: const EdgeInsets.symmetric(horizontal: paddingLeftRight),
// color: Colors.red, // color: Colors.red,
child: Column( child: Row(
children: [
const SizedBox(
height: 24,
),
Row(
children: [ children: [
Expanded( Expanded(
child: Container( child: Container(
...@@ -1890,8 +1890,6 @@ class AddMoreOrder extends StatelessWidget { ...@@ -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