React Native NavigationCardStackStyleInterpolator.forVertical() - 如何更改方向?

时间:2016-09-13 18:19:06

标签: react-native

我希望卡片从顶部而不是从底部出现。使用NavigationCardStackStyleInterpolator.forVertical()时有没有办法做到这一点?

1 个答案:

答案 0 :(得分:0)

我找到的一个解决方案是使用我自己的自定义插值器。

我们可以使用NavigationCardStackStyleInterpolator组件作为模板并更改

  const translateY = position.interpolate({
inputRange,
outputRange: ([height, 0, -10]: Array<number>)});

  const translateY = position.interpolate({
inputRange,
outputRange: ([-height, 0, -10]: Array<number>)});