我正在尝试在我的 RN 应用程序中构建这个粘性标题导航栏。基本上,基于 Y 滚动突出显示当前类别的类别的水平滚动视图。
感谢伟大的 William Candillon 的视频 ( https://www.youtube.com/watch?v=xutPT1oZL2M&t=1369s ) 我已经很接近了,但我有一个主要问题。
我在滚动时使用插值来转换类别视图的 X 位置。然后我有一个包裹这个动画视图的滚动视图。问题是 Scrollview 不起作用,因为它没有动画视图位置的参考。正如您在下面的 gif 中看到的(蓝色 -> Animated.View / 红色 -> Scrollview)
我喜欢插值方法,因为它是声明性的并且在本机线程上运行,所以我尽量避免创建附加到 scrollTo() 函数的侦听器。
你会考虑什么方法?
export default ({ y, scrollView, tabs }) => {
const index = new Value(0);
const [measurements, setMeasurements] = useState(
new Array(tabs.length).fill(0)
);
const indexTransition = withTransition(index);
const width = interpolate(indexTransition, {
inputRange: tabs.map((_, i) => i),
outputRange: measurements
});
const translateX = interpolate(indexTransition, {
inputRange: tabs.map((_tab, i) => i),
outputRange: measurements.map((_, i) => {
return (
-1 *
measurements
.filter((_measurement, j) => j < i)
.reduce((acc, m) => acc + m, 0) -
8 * i
);
})
});
const style = {
borderRadius: 24,
backgroundColor: 'black',
width,
flex: 1
};
const maskElement = <Animated.View {...{ style }} />;
useCode(
() =>
block(
tabs.map((tab, i) =>
cond(
i === tabs.length - 1
? greaterOrEq(y, tab.anchor)
: and(
greaterOrEq(y, tab.anchor),
lessOrEq(y, tabs[i + 1].anchor)
),
set(index, i)
)
)
),
[index, tabs, y]
);
return (
<Animated.View style={[styles.container, {}]}>
<Animated.ScrollView
scrollEventThrottle={16}
horizontal
style={{ backgroundColor: 'red', flex: 1 }}
>
<Animated.View
style={{
transform: [{ translateX }],
backgroundColor: 'blue'
}}
>
<Tabs
onPress={i => {
if (scrollView) {
scrollView.getNode().scrollTo({ y: tabs[i].anchor + 1 });
}
}}
onMeasurement={(i, m) => {
measurements[i] = m;
setMeasurements([...measurements]);
}}
{...{ tabs, translateX }}
/>
</Animated.View>
</Animated.ScrollView>
</Animated.View>
);
};