rn-sliding-up-panel
Version:
Draggable sliding up panel implemented in React Native
28 lines (26 loc) • 484 B
JavaScript
/* @flow */
import {StyleSheet} from 'react-native'
import {visibleHeight} from './layout'
export default StyleSheet.create({
container: {
position: 'relative',
flex: 1
},
backdrop: {
position: 'absolute',
top: 0,
bottom: 0,
left: 0,
right: 0,
backgroundColor: '#000'
},
animatedContainer: {
flex: 1,
position: 'absolute',
top: visibleHeight,
left: 0,
right: 0,
height: visibleHeight,
alignSelf: 'stretch'
}
})