I'm trying use styled_components to replace some texts when line is break with the follows css styles:
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
But when i use text-overflow and/or white-space styles, i have a error, because textOverflow and whiteSpace is not a valid style property.
How to apply that styles with styled_components or React Native StyleSheet?
Thank you!
React, React Native e Styled Components version
{
"react": "16.13.1",
"react-native": "0.63.4",
"styled-components": "^5.2.1"
}