diff --git a/assets/present.png b/assets/present.png new file mode 100644 index 0000000..0ff175c Binary files /dev/null and b/assets/present.png differ diff --git a/components/LogoTitle.js b/components/LogoTitle.js new file mode 100644 index 0000000..7f2f964 --- /dev/null +++ b/components/LogoTitle.js @@ -0,0 +1,24 @@ +import { StyleSheet, Image, View } from "react-native"; + +const LogoTitle = (props) => { + return ( + + + + ); +}; + +const styles = StyleSheet.create({ + srceen: { + flex: 1, + alignItem: "center", + justifyContent: "center", + }, + image: { + marginBottom: 12, + width: 50, + height: 50, + }, +}); + +export default LogoTitle; diff --git a/navigation/Navigator.js b/navigation/Navigator.js index c81174b..5cc3142 100644 --- a/navigation/Navigator.js +++ b/navigation/Navigator.js @@ -5,6 +5,7 @@ import Icon from "react-native-vector-icons/Ionicons"; import Colors from "../constants/colors"; import MainScreen from "../screens/MainScreen"; +import LogoTitle from "../components/LogoTitle"; const Tab = createBottomTabNavigator(); @@ -16,6 +17,8 @@ function Navigator() { headerStyle: { backgroundColor: Colors.accent500, }, + tabBarShowLabel: false, + headerTitle: (props) => , }} >