First Draft of Bottom Tab Navigation

This commit is contained in:
Samuel Oberhofer
2022-12-09 15:04:18 +01:00
parent d85ee6418c
commit 8b0091ebb2
5 changed files with 707 additions and 20 deletions
+22
View File
@@ -0,0 +1,22 @@
import { StatusBar } from "expo-status-bar";
import { Text, View, StyleSheet } from "react-native";
function MainScreen() {
return (
<View style={styles.container}>
<Text>Open up App.js to start working on your app!</Text>
<StatusBar style="auto" />
</View>
);
}
export default MainScreen;
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#282A35",
alignItems: "center",
justifyContent: "center",
},
});