WT 1.1.13+2 double values fix

This commit is contained in:
bossanyit
2021-04-19 16:49:05 +02:00
parent cc1117d8a1
commit 5fe8f76f48
16 changed files with 19 additions and 9 deletions
+1 -1
View File
@@ -260,7 +260,7 @@ class CustomerModifyPage extends StatelessWidget with Trans {
initalValue: customerBloc.weight.toInt(),
unit: " ",
color: Colors.indigo,
onChange: (value) => {customerBloc.add(CustomerWeightChange(weight: value.toInt()))}),
onChange: (value) => {customerBloc.add(CustomerWeightChange(weight: value))}),
SizedBox(width: 30),
],
)),