I have a screen with an png image, I am trying to add touchables on the joints. I want to keep touchabes consistent across screen sizes
This is my code
import {
Platform,
ImageBackground,
View,
StyleSheet,
TouchableOpacity,
Dimensions,
PixelRatio
} from 'react-native';
const { width, height } = Dimensions.get('window');
const radius = PixelRatio.roundToNearestPixel(width / 2);
const getWidthPercent = (percent) => (width * percent) / 100;
const getHeightPercent = (percent) => (height * percent) / 100;
<View style={styles.container}>
<ImageBackground
style={styles.image}
resizeMode="contain"
source={require('../../assets/skeleton-large.png')}>
<TouchableOpacity style={styles.leftShoulder}></TouchableOpacity>
<TouchableOpacity style={styles.rightShoulder}></TouchableOpacity>
</ImageBackground>
</View>
jointStyleDefaults
const jointStyleDefaults = {
backgroundColor: '#CC41444B',
position: 'absolute',
width: radius * 0.3, // to keep the size of circle responsive across screen size
height: radius * 0.3,
borderRadius: radius
};
StyleSheet
const styles = StyleSheet.create({
container: {
flex: 1,
},
image: {
flex: 1
},
leftShoulder: {
...jointStyleDefaults,
top: getHeightPercent(13),
bottom: 0,
right: 0,
left: getWidthPercent(25)
},
rightShoulder: {
...jointStyleDefaults,
top: getHeightPercent(13),
bottom: 0,
right: 0,
left: getWidthPercent(60)
},
});
I want to keep circular images at fixed point on png across screen sizes. How do i achieve this?