ImageBackground 没有包装 stack.navigator 并且 stack.screens 不可见。(@react-navigation/stack": "^5.10.0 ) React-Native

IT技术 reactjs react-native react-navigation react-navigation-stack
2021-05-15 17:44:13

我有多个具有相同背景的屏幕。我想在导航文件本身中有 ImageBackground。但不知何故,屏幕是不可见的。

这是代码

<ImageBackground style={styles.imageContainer} source={pic1}>
   <Stack.Navigator>
     <Stack.Screen name="screen1" component="Screen1" />
   <Stack.Navigator>
</ImageBackground>



    imageContainer: {
    flex: 1,
    width: width,
    height: height,
    alignItems: 'center',
    resizeMode: 'contain',
    flexDirection: 'column',
  },

风格也包括在内

这是行不通的。Screen1 未显示,但背景已正确显示。

我也尝试cardStyle将 navigator 作为backgroundColor:"transparent",甚至尝试过backgroundColor:"transperent"但没有任何效果。

谢谢!!

1个回答

您必须为此使用主题并将背景设置为透明。

导入默认主题

import { NavigationContainer, DefaultTheme } from '@react-navigation/native';

更新背景颜色

const MyTheme = {
  ...DefaultTheme,
  colors: {
    ...DefaultTheme.colors,
    primary: 'rgb(255, 45, 85)',
    background: 'transparent',
  },
};

并像这样包装导航容器。

export default function App() {
  const image = { uri: 'https://reactjs.org/logo-og.png' };
  return (
    <ImageBackground
      source={image}
      style={{
        flex: 1,
        resizeMode: 'cover',
        justifyContent: 'center',
      }}>
      <NavigationContainer theme={MyTheme}>
        <MyStack />
      </NavigationContainer>
    </ImageBackground>
  );
}

您可以在此处查看样品小吃 https://snack.expo.io/@guruparan/createstacknavigator-|-react-navigation