Guest User

Untitled

a guest
Oct 19th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <TouchableOpacity onPress={this.showView}>
  2. <View style={styles.mainContainer}>
  3. <ScrollView horizontal pagingEnabled>
  4. {images.map((image, index) => (
  5. <Image
  6. key={index}
  7. styleName={styleName}
  8. source={image}
  9. />
  10. ))}
  11. </ScrollView>
  12. <View style={styles.title}>
  13. <View style={styles.rowContainer}>
  14. <Text>{sample text}</Text>
  15. </View>
  16. </View>
  17. </View>
  18. </TouchableOpacity>
Add Comment
Please, Sign In to add comment