-
Notifications
You must be signed in to change notification settings - Fork 214
/
TextAreaWidget.js
54 lines (45 loc) · 1.01 KB
/
TextAreaWidget.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 React from 'react';
import createReactClass from 'create-react-class';
import {
View,
TextInput,
PixelRatio
} from 'react-native';
var WidgetMixin = require('../mixins/WidgetMixin.js');
module.exports = createReactClass({
mixins: [WidgetMixin],
getDefaultProps() {
return {
type: 'TextAreaWidget',
};
},
render() {
return (
<View style={this.getStyle('textAreaRow')}>
<TextInput
style={this.getStyle('textArea')}
multiline={true}
{...this.props}
onFocus={() => this.props.onFocus(true)}
onChangeText={this._onChange}
value={this.state.value}
/>
</View>
);
},
defaultStyles: {
textAreaRow: {
backgroundColor: '#FFF',
height: 120,
borderBottomWidth: 1 / PixelRatio.get(),
borderColor: '#c8c7cc',
alignItems: 'center',
paddingLeft: 10,
paddingRight: 10,
},
textArea: {
fontSize: 15,
flex: 1,
},
},
});