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

viewbill edited size

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