WT 1.1.17+2 error fix utf8 in names, thick pointer
This commit is contained in:
@@ -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())),
|
||||
|
||||
Reference in New Issue
Block a user