如何更改时间文本颜色?

Wat*_*lva 3 react-native react-native-gifted-chat

我使用react-native-gifted-chat 进行聊天。我想更改时间字体颜色。我按照医生说的改变了它,但它没有改变。我希望两个时间的颜色都是黑色。使用“react-native-gifted-chat”:“^0.16.1”

  const renderTime = (props) => {
    return (
      <Time
      {...props}
        textStyle={{
          left: {
            color: 'black',
          },
          right: {
            color: 'black',
          },
        }}
      />
    );
  };
Run Code Online (Sandbox Code Playgroud)

str*_*605 9

看来你需要通过timeTextStyle而不是textStyle.

尝试:

  const renderTime = (props) => {
    return (
      <Time
      {...props}
        timeTextStyle={{
          left: {
            color: 'black',
          },
          right: {
            color: 'black',
          },
        }}
      />
    );
  };
Run Code Online (Sandbox Code Playgroud)