From 3adffd8887e9798419bb63daff12a1d2146de876 Mon Sep 17 00:00:00 2001 From: Restioson Date: Mon, 4 Sep 2023 18:39:44 +0200 Subject: [PATCH] feat: swap side of dollar sign in fiat text (val$ -> $val) --- mobile/lib/common/fiat_text.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/lib/common/fiat_text.dart b/mobile/lib/common/fiat_text.dart index 151e189cc..3fc2d2e0e 100644 --- a/mobile/lib/common/fiat_text.dart +++ b/mobile/lib/common/fiat_text.dart @@ -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); } }