下面的代码是关于数字选择器的工作原理,我能够添加更多的属性,如 textStyle() 和 step,现在我想再次使用 NumberPicker 但使用字符串:
'''
new NumberPicker.horizontal(
listViewHeight: 50,
initialValue: _currentValue,
minValue: 2,
maxValue: 20,
step: 2,
haptics: true,
textStyle: TextStyle(
fontSize: 14, fontWeight: FontWeight.bold),
onChanged: (newValue) =>
setState(() => _currentValue = newValue)),
new Text("$_currentValue KMs"),
'''