Skip to content

Commit

Permalink
588 fix number formatting in statistics (#589)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stift authored Feb 7, 2025
1 parent 705428c commit c753d1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"files.eol": "\n",
"circleci.filters.branchFilter": "allBranches",
"circleci.persistedProjectSelection": [
"gh/verdigado/gruene_app"
"gh/verdigado/gruene-app"
],
"cSpell.enabled": false
}
2 changes: 1 addition & 1 deletion lib/features/campaigns/screens/statistics_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ class StatisticsScreen extends StatelessWidget {
}

Widget _getDataRow(String key, int value, ThemeData theme) {
var formatter = NumberFormat('#,##,##0', t.$meta.locale.languageCode);
var formatter = NumberFormat.decimalPattern(t.$meta.locale.languageCode);
return Container(
padding: const EdgeInsets.all(4),
decoration: BoxDecoration(
Expand Down

0 comments on commit c753d1a

Please sign in to comment.