Add Logo to Title
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import { StyleSheet, Image, View } from "react-native";
|
||||
|
||||
const LogoTitle = (props) => {
|
||||
return (
|
||||
<View style={styles.screen}>
|
||||
<Image style={styles.image} source={require("../assets/present.png")} />
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
srceen: {
|
||||
flex: 1,
|
||||
alignItem: "center",
|
||||
justifyContent: "center",
|
||||
},
|
||||
image: {
|
||||
marginBottom: 12,
|
||||
width: 50,
|
||||
height: 50,
|
||||
},
|
||||
});
|
||||
|
||||
export default LogoTitle;
|
||||
Reference in New Issue
Block a user