13

如何在不包含在 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
},
4

3 回答 3

33

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

出于某种原因,即使其他人(如,)也color不会被视为道具。stylebackgroundColor

只需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 } }}
      />
于 2019-05-02T20:08:54.280 回答
22
theme={{
         colors: {
                    placeholder: 'white', text: 'white', primary: 'white',
                    underlineColor: 'transparent', background: '#003489'
            }
      }}
于 2019-05-09T11:41:27.540 回答
1

只需将此行添加theme={{colors: {text: 'Your Color' }}}<TextInput/>React 本机论文。

        <TextInput
            placeholder= {'Some Text'}
            theme={{
              colors: {
                    text: 'white',
                 }
           }}
于 2022-02-19T09:42:49.190 回答