React Navigation - 在Blurview中包装标题和标签导航器会丢失道具

问题描述 投票:1回答:1

我正在使用React Navigation 2作为一个简单的RN项目与Expo。我试图让底部的标题和标签显示在模糊的背景上,所以我做了一个HOC用BlurView包装库标题以提供该功能。它使模糊很好,但不幸的是标题,后退按钮等在此过程中丢失。有没有办法在React Navigation中这样做,我使用的代码如下:

const wrappedHeader = props => (
    <BlurView tint="light" intensity={80} style={styles.header}>
        <Header {...props}/>
    </BlurView>
);

class HomeScreen extends React.Component {
    static navigationOptions = {
        header: props => wrappedHeader(props),
        headerTitle: "Home Screen",
    };
   ....
}
android ios react-native react-navigation blur
1个回答
2
投票

这是一个棘手的问题,真正让我思考了一段时间。

这是我发现的解决方案栏导航器的原生iOS感觉的解决方案:

import React from 'react';
import { StyleSheet } from 'react-native';
import { BlurView } from 'expo';
import { BottomTabBar } from 'react-navigation-tabs';

const styles = StyleSheet.create({
  blurView: {
    position: 'absolute',
    bottom: 0,
    left: 0,
    right: 0,
  },
  bottomTabBar: {
    backgroundColor: 'transparent',
  },
});

export default function TabBar(props) {
  return (
    <BlurView tint="light" intensity={90} style={styles.blurView}>
      <BottomTabBar {...props} style={styles.bottomTabBar} />
    </BlurView>
  );
}

问题似乎与BlurView造型有关。

注意:此代码仅在导航器上设置tabBarComponent选项后才能工作,如下所示:

export default createBottomTabNavigator({
  // This part should be different on your side
  Feed: FeedScreen,
  Me: MeScreen,
  Settings: SettingsScreen,
}, {
  tabBarComponent: TabBar,
});

对于标题,我想它必须是相同的技巧,但你需要用bottom: 0替换top: 0

© www.soinside.com 2019 - 2024. All rights reserved.