react-native-simple-charts
Version:
Simple charts with gradient for react-native
49 lines (47 loc) • 787 B
JavaScript
import {StyleSheet} from 'react-native'
export default StyleSheet.create({
container: {
flexDirection: 'row',
},
scrollView: {
flex: 1
},
leftPanel: {
position: 'absolute',
zIndex: 1,
},
blur: {
position: 'absolute',
zIndex: 1,
},
leftBackground: {
position: 'absolute',
zIndex: 1,
backgroundColor: 'white',
opacity: 0.9
},
blurDark: {
position: "absolute",
top: 0, left: 0, bottom: 0, right: 0,
},
main: {
position: 'absolute',
zIndex: 2,
flex:1,
},
mainBackground:{
backgroundColor: 'black',
flex:1,
position: 'absolute',
zIndex:10,
right:0,
},
loadingWrapper: {
zIndex: 2,
},
loading: {
flex:1,
alignSelf: 'center',
justifyContent: 'center',
}
})