feat: responsive
This commit is contained in:
parent
82285026fe
commit
bb93b1ad63
|
@ -278,7 +278,10 @@ class SaleQuotationPage extends StatelessWidget {
|
||||||
alignment: Alignment.center,
|
alignment: Alignment.center,
|
||||||
width: quantityWidth,
|
width: quantityWidth,
|
||||||
child: Text(
|
child: Text(
|
||||||
'${controller.groups[index].items[i].quantity}'),
|
'${controller.groups[index].items[i].quantity}',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: ScreenAdaper.height(25)),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
groupIndex: index,
|
groupIndex: index,
|
||||||
rowIndex: i,
|
rowIndex: i,
|
||||||
|
@ -290,7 +293,10 @@ class SaleQuotationPage extends StatelessWidget {
|
||||||
alignment: Alignment.center,
|
alignment: Alignment.center,
|
||||||
width: unitPriceWidth,
|
width: unitPriceWidth,
|
||||||
child: Text(
|
child: Text(
|
||||||
'${controller.groups[index].items[i].cost}'),
|
'${controller.groups[index].items[i].cost}',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: ScreenAdaper.height(25)),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
groupIndex: index,
|
groupIndex: index,
|
||||||
rowIndex: i,
|
rowIndex: i,
|
||||||
|
@ -302,7 +308,10 @@ class SaleQuotationPage extends StatelessWidget {
|
||||||
alignment: Alignment.center,
|
alignment: Alignment.center,
|
||||||
width: amountWidth,
|
width: amountWidth,
|
||||||
child: Text(
|
child: Text(
|
||||||
'${controller.groups[index].items[i].amount}'),
|
'${controller.groups[index].items[i].amount}',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: ScreenAdaper.height(25)),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
groupIndex: index,
|
groupIndex: index,
|
||||||
rowIndex: i,
|
rowIndex: i,
|
||||||
|
|
Loading…
Reference in New Issue