目前我只能使用表单构建器为数字创建 TouchSpin。这是我的代码
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('TouchSpin'),
),
body: Center(
child: TouchSpin(
value: 10,
min: 5,
max: 100,
step: 5,
displayFormat: NumberFormat.currency(locale: 'en_US', symbol: '\$'),
textStyle: TextStyle(fontSize: 36),
iconSize: 48.0,
addIcon: Icon(Icons.arrow_right),
subtractIcon: Icon(Icons.arrow_left),
iconActiveColor: Colors.green,
iconDisabledColor: Colors.grey,
iconPadding: EdgeInsets.all(20),
onChanged: (val) {
print(val);
},
enabled: true,
),
),
);
}
有没有办法让 TouchSpin 数据成为字符串值?或者我可以通过任何其他方式实现这一点(颤振中的字符串选项的 TouchSpin)