Settings
This commit is contained in:
parent
e5297088eb
commit
19ec64c2fd
|
|
@ -48,14 +48,19 @@ class InvoiceEditItemsDesktop extends StatelessWidget {
|
||||||
initialValue: item.notes,
|
initialValue: item.notes,
|
||||||
)),
|
)),
|
||||||
DataCell(TextFormField(
|
DataCell(TextFormField(
|
||||||
|
textAlign: TextAlign.right,
|
||||||
initialValue: formatNumber(item.cost, context,
|
initialValue: formatNumber(item.cost, context,
|
||||||
formatNumberType: FormatNumberType.input),
|
formatNumberType: FormatNumberType.input),
|
||||||
)),
|
)),
|
||||||
DataCell(TextFormField(
|
DataCell(TextFormField(
|
||||||
|
textAlign: TextAlign.right,
|
||||||
initialValue: formatNumber(item.quantity, context,
|
initialValue: formatNumber(item.quantity, context,
|
||||||
formatNumberType: FormatNumberType.input),
|
formatNumberType: FormatNumberType.input),
|
||||||
)),
|
)),
|
||||||
DataCell(Text(formatNumber(item.total, context))),
|
DataCell(Text(
|
||||||
|
formatNumber(item.total, context),
|
||||||
|
textAlign: TextAlign.right,
|
||||||
|
)),
|
||||||
],
|
],
|
||||||
))
|
))
|
||||||
.toList(),
|
.toList(),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue