如何在颤振中将 NumberPicker 用于字符串

时间:2021-02-13 04:05:30

标签: flutter

下面的代码是关于数字选择器的工作原理,我能够添加更多的属性,如 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"),

'''

0 个答案:

没有答案