下面是我的代码:
`import React from 'react'
import { View, Text, StyleSheet, StatusBar } from 'react-native';
export default function App() {
return(
<View style={styles.container}>
<Text style={styles.headerText}>This is the header text</Text>
<Text>Hello World</Text>
<Text>Is this under? Yes it is</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "dodgerblue",
alignItems: 'center',
justifyContent: 'center',
},
headerText: {
fontSize: 20,
fontWeight: 'bold',
marginBottom: 10,
},
});`
字符串
我尝试隐藏标题并使其为false,使用堆栈导航,但没有工作。我还尝试了topbar方法。下面是它的外观,
enter image description here
1条答案
按热度按时间o8x7eapl1#
你是否创建了一个导航器?如果是,请转到你的导航器screenOptions并添加headerShown:false如果它不工作,你可以发布导航器的屏幕截图吗?