Skip to content

Commit

Permalink
Merge pull request #1215 from get10101/swap-dollar-side
Browse files Browse the repository at this point in the history
feat: swap side of dollar sign in fiat text (val$ -> $val)
  • Loading branch information
Restioson authored Sep 4, 2023
2 parents 6a9bb51 + 3adffd8 commit fcd35a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/lib/common/fiat_text.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ class FiatText extends StatelessWidget {
@override
Widget build(BuildContext context) {
final formatter = NumberFormat("#,###,##0.00", "en");
return Text("${formatter.format(amount)} \$", style: textStyle);
return Text("\$${formatter.format(amount)}", style: textStyle);
}
}

0 comments on commit fcd35a0

Please sign in to comment.