react-native-inspect-image
Version:
Image inspection modal component for react native
33 lines (32 loc) • 574 B
text/typescript
import { StyleSheet } from 'react-native';
export const createStyle = () =>
StyleSheet.create({
modalCont: {
flex: 1,
justifyContent: 'center',
alignItems: 'center'
},
main: {
width: '100%',
height: '100%',
position: 'relative'
},
closeBtn: {
position: 'absolute',
padding: 8,
zIndex: 2,
right: 8,
top: '7%'
},
imgModal: {
width: '100%',
height: '100%',
resizeMode: 'contain'
},
animatedImgCont: {
width: '100%',
height: '100%',
justifyContent: 'center',
alignItems: 'center'
}
});