Detail Screen
Detail screen includes the header, navigation function, and display api data.
Header
//renderParallaxBackground={() => this.background()} // A: Parallax mode
//renderParallaxForeground={() => this.foreground()} // A: Parallax mode
renderParallaxForeground={() => this.carouselBackground()} // B: Carousel modeNavigation
Map screen
<TouchableOpacity
onPress={() => this.props.navigation.navigate('MapDetails', {lat: lat, long: long,} )}
activeOpacity={0.8}
>
...
</TouchableOpacity>Return to previous screen
Content
Last updated