-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathFormRow.js
54 lines (50 loc) · 1.08 KB
/
FormRow.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
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { View, Text, StyleSheet } from 'react-native';
import { getSemanticColor } from '../../theme';
const styles = StyleSheet.create( {
field: {
backgroundColor: getSemanticColor( 'systemBackground' ),
height: 44,
flexDirection: 'row',
alignItems: 'center',
borderBottomWidth: 1,
borderBottomColor: getSemanticColor( 'separator' ),
},
label: {
width: 130,
marginLeft: 10,
},
labelText: {
color: getSemanticColor( 'label' ),
fontSize: 15,
lineHeight: 16,
},
inputField: {
flex: 1,
justifyContent: 'flex-end',
flexDirection: 'row',
marginRight: 10,
},
} );
export default class FormRow extends Component {
static propTypes = {
label: PropTypes.string.isRequired,
};
render() {
return (
<View>
<View style={ styles.field }>
<View style={ styles.label }>
<Text style={ styles.labelText }>
{ this.props.label }
</Text>
</View>
<View style={ styles.inputField }>
{ this.props.children }
</View>
</View>
</View>
);
}
}