From 7dc92e4340818327a9ed0f2b19d49920cf3ede1a Mon Sep 17 00:00:00 2001 From: Marcin Szalek Date: Sat, 18 Nov 2017 09:13:20 +0100 Subject: [PATCH] Fixed wrong weight formatting --- lib/screens/statistics_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/screens/statistics_page.dart b/lib/screens/statistics_page.dart index 6b1ce07..09e348b 100644 --- a/lib/screens/statistics_page.dart +++ b/lib/screens/statistics_page.dart @@ -138,7 +138,7 @@ class _StatisticCard extends StatelessWidget { child: new Row( children: [ new Text( - numberSymbol + value.toString(), + numberSymbol + value.toStringAsFixed(1), textScaleFactor: textSizeFactor, style: Theme .of(context)