-
Notifications
You must be signed in to change notification settings - Fork 47
Closed
Description
今天更新了Picker组件还有两个问题:
-
WheelPicker滑动一个条目有时候不生效,多滑几个值就没问题。还是
const _index = Math.ceil(offsetY / itemHeight) + 1计算有误,滑动换了一个值,但_index没变。 -
Picker组件在ios下初始值value不生效,android没问题,每次打开都是选中第一个,用setTimeout可以解决
useEffect(() => {
setTimeout(() => {
flatListRef.current?.scrollToIndex({
index: selectedIndex,
animated: false,
})
}, 100)
}, [selectedIndex])
Originally posted by @laogui in #721 (comment)
Metadata
Metadata
Assignees
Labels
No labels