You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
706 B
36 lines
706 B
import React from 'react';
|
|
|
|
import { StatusBar } from 'expo-status-bar';
|
|
import { SafeAreaView, StyleSheet } from 'react-native';
|
|
|
|
import Header from './components/Header';
|
|
import TabBar from './components/TabBar';
|
|
|
|
export default function App() {
|
|
|
|
return (
|
|
<SafeAreaView style={styles.container}>
|
|
<Header/>
|
|
<TabBar/>
|
|
<StatusBar style="auto" />
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
|
|
const tabOptions = {
|
|
tabBarShowLabel: false,
|
|
tabBarStyle: {
|
|
backgroundColor: "#FF5C5C"
|
|
},
|
|
tabBarActiveTintColor: "white",
|
|
tabBarInactiveTintColor: "black"
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: 'white',
|
|
|
|
},
|
|
});
|