Guest User

Untitled

a guest
May 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. export const ButtonLayout = () => {
  2. return (
  3. <View style={styles.row}>
  4.  
  5. <TouchableOpacity >
  6. <Text>Book Now</Text>
  7. </TouchableOpacity>
  8.  
  9. <TouchableOpacity >
  10. <Text>Schedule</Text>
  11. </TouchableOpacity>
  12.  
  13. </View>
  14.  
  15. )
  16. }
  17.  
  18. <View style={styles.container}>
  19. <MapView
  20. provider={MapView.PROVIDER_GOOGLE}
  21. style={styles.map}
  22. region={this.props.region}
  23. >
  24. <MapView.Marker
  25. coordinate={this.props.region}
  26. pinColor='green'
  27. />
  28. </MapView>
  29. <ButtonLayout style={{ marginBottom: 5 }} />
  30. </View>
  31.  
  32. );
Add Comment
Please, Sign In to add comment