小编Wah*_*hal的帖子

如何在反应本机反应导航6中使用cardStyleInterpolator

根据版本6中的文档,我们可以像这样使用cardStyleInterpolator

import { CardStyleInterpolators } from '@react-navigation/stack';

// ...

<Stack.Screen
  name="Profile"
  component={Profile}
  options={{
    title: 'Profile',
    cardStyleInterpolator: CardStyleInterpolators.forFadeFromBottomAndroid,
  }}
/>;
Run Code Online (Sandbox Code Playgroud)

这意味着我们还必须安装@react-navigation/stack?因为此代码在反应导航 6 中不起作用。任何帮助将不胜感激。

react-native react-navigation-v6

5
推荐指数
0
解决办法
1075
查看次数

标签 统计

react-native ×1

react-navigation-v6 ×1