How can I style text in react-native-paper?
I have a dark mode in my app and need light colors for my texts.
I could use a theme, but in my app I am only using this one component from React Native Paper, and besides, I already have a theming in place.
<DataTable.Cell style={{color: "#fff"}}> // <-- This styling does not work
Sophia Loren
</DataTable.Cell>
The above code does not change the font color as for all DataTable components the style prop is of the type ViewStyle, which means it does set, for instance, the background color, but not the font color.