Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save manoj-singh-developer/03f7a395facdd28c8007e1823f605db9 to your computer and use it in GitHub Desktop.

Select an option

Save manoj-singh-developer/03f7a395facdd28c8007e1823f605db9 to your computer and use it in GitHub Desktop.
react-native background image css
<TouchableOpacity style={styles.deal} onPress={this.handlePress}>
<ImageBackground source={{uri: deal.media[0]}} style={styles.image} >
<View style={{position: 'absolute', top: 0, left: 0, right: 0, bottom: 0, justifyContent: 'center', alignItems: 'center'}}>
<Text>{deal.title}</Text>
</View>
</ImageBackground>
</TouchableOpacity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment