react-native-wheel-picker
react-native-wheel-picker copied to clipboard
PickerData的数据类型定义可以从any进一步细化
根据文档用例中的描述,建议将ICommonPickerProps接口中的PickerData类型改为:
type PickerDataBase = string | number
type PickerDataGroup = {[k:string]: PickerDataBase[] | PickerDataGroup}
pickerData: PickerDataBase[] | PickerDataBase[][] | PickerDataGroup
同理,selectedValue也可以集成为PickerDataBase | PickerDataBase[]
@RickoNoNo3 要不提交一个PR吧?
@yz1311 好的,这样的话我需要再多使用使用,深入了解一下这个组件库,避免改出问题来