如何使用NumberPicker的textMapper(Flutter)?

问题描述 投票:0回答:1

enter image description here

我正在尝试使用textMapper更改NumberPicker中显示的文本。

我找到了TextMapper类,但是我不知道如何使用它。请告诉我如何使用textMapper

flutter numberpicker
1个回答
0
投票

基本上是一个采用String参数并返回用于转换输入的String值的方法。

例如:

String modifyText(String s){
  return "Value " +s; // Appends "Value" to the String s
}

可以设置为textMapper属性,以将选择器中的值显示为“值...”,而不仅仅是“ ...”

© www.soinside.com 2019 - 2024. All rights reserved.