NumberPicker的textMapper(Flutter)如何使用?
How to use NumberPicker's textMapper(Flutter)?
enter image description here
我正在尝试使用 textMapper 更改 NumberPicker 中显示的文本。
我找到了 TextMapper class,但我不知道如何使用它。
请告诉我如何使用 textMapper
它基本上是一种采用字符串参数和 returns 转换输入的字符串值的方法。
例如:
String modifyText(String s){
return "Value " +s; // Appends "Value" to the String s
}
可以设置为 textMapper
属性 以将选择器中的值显示为 "Value ..." 而不仅仅是“...”
enter image description here
我正在尝试使用 textMapper 更改 NumberPicker 中显示的文本。
我找到了 TextMapper class,但我不知道如何使用它。 请告诉我如何使用 textMapper
它基本上是一种采用字符串参数和 returns 转换输入的字符串值的方法。
例如:
String modifyText(String s){
return "Value " +s; // Appends "Value" to the String s
}
可以设置为 textMapper
属性 以将选择器中的值显示为 "Value ..." 而不仅仅是“...”