Closed
Description
Hello there,
I choosed to hide automatically the navigation bar on my phone, as you can see on the screenshot below the space allocated to the navigation bar are still there. (Android 7.1, Samsung Galaxy S8 Plus)
I tried to make a custom renderItem method and set "paddingBottom" to 0 but it didn't work...
_renderItem = (props) => {
const style = {
backgroundColor: props.backgroundColor,
paddingTop: props.topSpacer,
paddingBottom: 0
}
return (
<View style={[styles.mainContent, style]}>
<Text style={styles.title}>{props.title}</Text>
<Image source={props.image} style={props.imageStyle} />
<Text style={styles.text}>{props.text}</Text>
</View>
)
}
Any ideas ?