@around25/react-native-gallery-media-picker
Version:
A react native component that will get all the media files (images and video) from device gallery and allow to select items
29 lines (28 loc) • 463 B
JavaScript
import {StyleSheet} from 'react-native';
export default StyleSheet.create({
wrapper:{
flexGrow: 1,
paddingRight: 0
},
loading: {
flexGrow: 1,
justifyContent: 'center',
alignItems: 'center',
},
row:{
flexDirection: 'row',
flex: 1,
},
marker: {
position: 'absolute',
top: 5,
backgroundColor: 'transparent',
},
emptyText: {
textAlign: 'center'
},
base: {
flexGrow: 1,
paddingRight: 0
}
});