We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a40557 commit a6be298Copy full SHA for a6be298
src/components/textArea/index.js
@@ -2,6 +2,7 @@ import React from 'react';
2
import {View, TextInput as RNTextInput, StyleSheet} from 'react-native';
3
import {TextInputPropTypes} from 'deprecated-react-native-prop-types';
4
import BaseInput from '../baseInput';
5
+import {Colors} from '../../style';
6
7
/**
8
* @description: a wrapper for Text Field component to create enclosed text area
@@ -30,6 +31,8 @@ export default class TextArea extends BaseInput {
30
31
return (
32
<View style={this.styles.container}>
33
<RNTextInput
34
+ placeholderTextColor={Colors.$textNeutral}
35
+ color={Colors.$textDefault}
36
{...this.props}
37
value={value}
38
multiline
0 commit comments