-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
55 lines (50 loc) · 1.23 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import React from 'react'
import PropTypes from 'prop-types'
import {
View,
StyleSheet,
} from 'react-native'
import { isPad, statusBarHeight } from 'react-native-layout-constants'
export default class SplitView extends React.Component {
render() {
const { borderColor, backgroundColor } = this.props
return (
<View style={[styles.container, { backgroundColor }]}>
<View style={[styles.leftContainer, { borderColor }]}>
{this.props.children}
</View>
{
isPad &&
this.props.SplitComponent &&
<View style={styles.rightContainer}>
<this.props.SplitComponent />
</View>
}
</View>
)
}
}
SplitView.propTypes = {
SplitComponent: PropTypes.func,
borderColor: PropTypes.string,
backgroundColor: PropTypes.string,
}
SplitView.defaultProps = {
borderColor: '#d3d3d3',
backgroundColor: '#fff',
}
const styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: 'row',
},
leftContainer: {
width: isPad ? '45%' : '100%',
maxWidth: isPad ? 400 : 'auto',
borderRightWidth: isPad ? StyleSheet.hairlineWidth : 0,
},
rightContainer: {
flex: 1,
paddingTop: isPad ? statusBarHeight : 0,
},
})