Commit 1d42dd8f authored by Dio Maulana's avatar Dio Maulana

viewbill edited size

parent 7e2362fc
...@@ -62,6 +62,7 @@ void main() async { ...@@ -62,6 +62,7 @@ void main() async {
configLoading(); configLoading();
loadAssetConfig().then((value) { loadAssetConfig().then((value) {
String orderId = Uri.base.queryParameters["o"] ?? '';
runApp(MyApp( runApp(MyApp(
title: value, title: value,
)); ));
......
...@@ -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 {
) )
], ],
), ),
],
),
); );
} }
} }
...@@ -51,7 +51,7 @@ packages: ...@@ -51,7 +51,7 @@ packages:
source: hosted source: hosted
version: "1.16.0" version: "1.16.0"
crypto: crypto:
dependency: transitive dependency: "direct main"
description: description:
name: crypto name: crypto
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
......
...@@ -27,6 +27,7 @@ environment: ...@@ -27,6 +27,7 @@ environment:
# the latest version available on pub.dev. To see which dependencies have newer # the latest version available on pub.dev. To see which dependencies have newer
# versions available, run `flutter pub outdated`. # versions available, run `flutter pub outdated`.
dependencies: dependencies:
crypto: ^3.0.2
dotted_line: ^3.1.0 dotted_line: ^3.1.0
flutter: flutter:
sdk: flutter sdk: flutter
......
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