WT 1.1.17+2 error fix utf8 in names, thick pointer

This commit is contained in:
bossanyit
2021-05-15 19:45:08 +02:00
parent 07868c6b8e
commit 7b0d15aede
5 changed files with 40 additions and 27 deletions
+8
View File
@@ -241,6 +241,8 @@ class CustomerModifyPage extends StatelessWidget with Trans {
),
LinearShapePointer(
value: customerBloc.year!.toDouble(),
height: 35,
width: 15,
onValueChanged: (value) => {
customerBloc.add(CustomerBirthYearChange(year: value.toInt())),
},
@@ -295,9 +297,13 @@ class CustomerModifyPage extends StatelessWidget with Trans {
)),
)),
NeedlePointer(
needleColor: Colors.blue[200],
knobStyle: KnobStyle(color: Colors.blue[800]),
value: customerBloc.weight.toDouble(),
enableAnimation: true,
enableDragging: true,
needleStartWidth: 6,
needleEndWidth: 12,
onValueChanged: (value) => {customerBloc.add(CustomerWeightChange(weight: value))},
)
],
@@ -359,6 +365,8 @@ class CustomerModifyPage extends StatelessWidget with Trans {
),
),
LinearShapePointer(
height: 15,
width: 35,
value: customerBloc.height,
onValueChanged: (value) => {
customerBloc.add(CustomerHeightChange(height: value.toInt())),