import React from "react"; import { View, ImageBackground, Text, TouchableOpacity, StyleSheet, } from "react-native"; import EntypoIcon from "react-native-vector-icons/Entypo"; function ImageHeader(props) { return ( props.navigation.goBack()}> {props.text} ) } const imageHeaderStyles = StyleSheet.create({ container: { flex: 1, minHeight: 175, maxHeight: 175, height: 175, width: "100%", }, row: { paddingTop: 30, flexDirection: "row", }, icon: { color: "white", fontSize: 40, paddingRight: 10, paddingLeft: 10, }, text: { color: "white", fontSize: 30, }, }); export default ImageHeader;