perbaikan on possale string 1
This commit is contained in:
@@ -329,7 +329,7 @@ class _LedgerPartyListScreenState extends State<LedgerPartyListScreen> {
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Text("$currency${summaryDue.toStringAsFixed(0)}",
|
||||
Text("$currency${formatWithSeparator(summaryDue)}",
|
||||
style: _theme.textTheme.titleLarge?.copyWith(
|
||||
fontWeight: FontWeight.w600,
|
||||
)),
|
||||
@@ -361,7 +361,7 @@ class _LedgerPartyListScreenState extends State<LedgerPartyListScreen> {
|
||||
),
|
||||
child: Column(
|
||||
children: [
|
||||
Text('$currency${totalCustomerDue.toStringAsFixed(2)}',
|
||||
Text('$currency${formatWithSeparator(totalCustomerDue)}',
|
||||
style: _theme.textTheme.titleLarge?.copyWith(
|
||||
fontWeight: FontWeight.w600,
|
||||
fontSize: 18,
|
||||
@@ -391,7 +391,7 @@ class _LedgerPartyListScreenState extends State<LedgerPartyListScreen> {
|
||||
child: Column(
|
||||
children: [
|
||||
Text(
|
||||
'$currency${totalSupplierDue.toStringAsFixed(2)}',
|
||||
'$currency${formatWithSeparator(totalSupplierDue)}',
|
||||
style: _theme.textTheme.titleLarge?.copyWith(
|
||||
fontWeight: FontWeight.w600,
|
||||
fontSize: 18,
|
||||
@@ -612,7 +612,7 @@ class _LedgerPartyListScreenState extends State<LedgerPartyListScreen> {
|
||||
children: [
|
||||
if (statusAmount != null)
|
||||
Text(
|
||||
'$currency${statusAmount.toStringAsFixed(0)}',
|
||||
'$currency${formatWithSeparator(statusAmount)}',
|
||||
style: _theme.textTheme.titleMedium?.copyWith(
|
||||
fontWeight: FontWeight.w500,
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user