Gets rid of hidden icon in back button header

This commit is contained in:
emelko
2019-05-27 23:41:44 +02:00
parent 2bbe737101
commit dce8138e12
-7
View File
@@ -1,12 +1,10 @@
import React from 'react'
import {
Text,
TouchableOpacity,
View
} from 'react-native'
import styles from '../../styles'
import NavigationArrow from './navigation-arrow'
import Icon from 'react-native-vector-icons/Entypo'
export default function BackButtonHeader(props) {
return (
@@ -21,11 +19,6 @@ export default function BackButtonHeader(props) {
{props.title}
</Text>
</View>
<TouchableOpacity>
<Icon
name={'chevron-thin-right'}
/>
</TouchableOpacity>
</View>
)
}