使用 React Native Elements,如何全局设置 <ListItem.Title> 组件的文本颜色样式?

Using React Native Elements, how can I globally style the text color of a <ListItem.Title> component?

我将 react-native-elements ui 框架与 ThemeProvider 一起使用,并尝试像这样全局设置组件文本的样式...

<ListItem bottomDivider>
  <ListItem.Title>Name</ListItem.Title>
  <ListItem.Input>DoB</ListItem.Input>
</ListItem>

我想将此 文本颜色设置为红色。所以我尝试了很多类似于下面代码的东西,但我什么都做不了。有什么想法吗?

ListItem: {
  inputStyle: {
    color: "red"
  }
}

如果可能的话,我宁愿保持全局样式而不是内联样式。

你必须使用ListItemInput

ListItemInput:{
       style:{}
}