admin管理员组

文章数量:1406937

Does anybody know how to add an ellipsis (The "..." that you usually see when a Text overflows) in a FloatingLabelInput in react native. The Text component has 2 props, numberOfLines and ellipsisSizeMode which help with this but FloatingLabelInput or TextInput have no such props and I have found no way to add a "..." in the end of the text when it overflows. Has anyone worked on a similar problem and knows a solution?

So far I have only tried to slice the text at 24 characters and then display a "..." after it but I am looking for a more dynamic approach as phone sizes and font sizes could differ.

本文标签: React native FloatingLabelInputTextInput ellipsis issueStack Overflow