From bb93b1ad63b7be7e4ade3349b455105fe35bccc2 Mon Sep 17 00:00:00 2001 From: louis <869322496@qq.com> Date: Mon, 1 Apr 2024 17:38:02 +0800 Subject: [PATCH] feat: responsive --- lib/screens/sale_quotation/sale_quotation.dart | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/lib/screens/sale_quotation/sale_quotation.dart b/lib/screens/sale_quotation/sale_quotation.dart index 4c50062..1c20fff 100644 --- a/lib/screens/sale_quotation/sale_quotation.dart +++ b/lib/screens/sale_quotation/sale_quotation.dart @@ -278,7 +278,10 @@ class SaleQuotationPage extends StatelessWidget { alignment: Alignment.center, width: quantityWidth, child: Text( - '${controller.groups[index].items[i].quantity}'), + '${controller.groups[index].items[i].quantity}', + style: TextStyle( + fontSize: ScreenAdaper.height(25)), + ), ), groupIndex: index, rowIndex: i, @@ -290,7 +293,10 @@ class SaleQuotationPage extends StatelessWidget { alignment: Alignment.center, width: unitPriceWidth, child: Text( - '${controller.groups[index].items[i].cost}'), + '${controller.groups[index].items[i].cost}', + style: TextStyle( + fontSize: ScreenAdaper.height(25)), + ), ), groupIndex: index, rowIndex: i, @@ -302,7 +308,10 @@ class SaleQuotationPage extends StatelessWidget { alignment: Alignment.center, width: amountWidth, child: Text( - '${controller.groups[index].items[i].amount}'), + '${controller.groups[index].items[i].amount}', + style: TextStyle( + fontSize: ScreenAdaper.height(25)), + ), ), groupIndex: index, rowIndex: i,