This is my current code and I want to have a button that's an image, where you can upload a design for a socks competition. Any Ideas?
<TouchableOpacity onPress={pickImage}>
<Image source={{uri: image}} source={designIcon} style={styles.thumbnail}/>
</TouchableOpacity>
Will you take the picture locally or from the internet? If locally,
<Image source={designIcon} style={styles.thumbnail}/>
or from URL,
<Image source={{uri: image}} style={styles.thumbnail}/>
Note:
1-) thumbnail style should has height
2-) If image in your locally, designIcon should be : designIcon = require('imagepath/img.png')