rafaelmotta / react-native-tag-select

🏷 A simple tag component to act as radio button / checkbox
156 stars 43 forks source link

How to disable ellipsis on long label? #9

Open jamesangetonhouse opened 6 years ago

jamesangetonhouse commented 6 years ago

Hi there, I found the package is very easy to use and the default UI is very pleasant. Good work.

However, I notice when the tag label is too long (more than 50 characters). It will show the ellipsis tail effect (same as ellipsizeMode=tail). Is there a way to allow multiple lines?

I notice the code for the tag formatting is at src/TagSelectItem.js, line 68 - numberOfLines={1}

I can directly change the line 68 to numberOfLines={2} and it did help. But don't think is a elegant way of doing that.