在React Native Paper中更改TextInput的文本颜色

时间:2019-05-02 18:34:31

标签: react-native react-native-paper

如何在不包装PaperProvider的情况下更改React Native Paper中TextInput的文本颜色?

目前这有效:

const theme = {
  ...DefaultTheme,
  colors: {
    ...DefaultTheme.colors,
    text: "orange",
  }
};

<PaperProvider theme={theme}>
  <TargetComponent />
</PaperProvider>

但是我想通过父组件传递的道具来控制文本颜色。 奇怪的是,传递backgroundColor可以,但是color不能。

移除PaperProvider包装也无济于事。

这是TargetComponent中的相关代码:

return (
    <View style={styles.container}>
      <TextInput
        type="outlined"
        style={this.props.style}
        onChangeText={this.props.onChange}
        label={this.props.label}
        value={this.props.value || "Replace this text"}
        placeholder={this.props.placeholder}
      />
    </View>
)

this.props.style是:

{
    color: "orange", // This does not work
    backgroundColor: "transparent" // This works
},

2 个答案:

答案 0 :(得分:1)

找到了解决方案。但是对于那些处于同样困境中的人:

由于某些原因,即使color之类的style道具也不被认为是backgroundColor道具。

只需将theme作为对TextInput的支持。在该theme对象中分配文本颜色,如下所示:

      <TextInput
        type="outlined"
        style={{ ...styles.textInput, ...this.props.style }}
        underlineColor={this.theme.colors.primary}
        onChangeText={this.props.onChange}
        label={this.props.label}
        value={this.props.value || "Replace this text"}
        placeholder={this.props.placeholder}
        theme={{ colors: { text: this.props.style.color } }}
      />

答案 1 :(得分:0)

theme={{
         colors: {
                    placeholder: 'white', text: 'white', primary: 'white',
                    underlineColor: 'transparent', background: '#003489'
            }
      }}