首页 > 解决方案 > React Navigation v5 中的 setOptions 内的 CardStyleInterpolators

问题描述

我正在尝试根据请求的来源更改转换样式。我可以做这样的事情吗?

navigation.setOptions({
    CardStyleInterpolator: ({ CardStyleInterpolators }) => {
      if (route.params?.cleanup == 1) {
        CardStyleInterpolators.forVerticalIOS;
      } else {
        CardStyleInterpolators.forHorizontalIOS;
      }
    },
}}

标签: react-nativereact-navigation

解决方案


推荐阅读