-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(android): lineCount/visibleText for Ti.UI.Label #13583
Conversation
@hansemannn any help with parity here? Would be a great PR to have |
@m1ga Regarding parity:
Therefore I would decide if the effort is worth is based on community feedback. If only one person can benefit from it, it's hard to justify the effort. |
If l |
|
Exposing two new parameters in a Ti.UI.Label:
Can be used in combination with
ellipsize: true
to determine if the text is fully visible or not.Example
-> returns 4 and
full text
. So the label will use only 4 of the max 10 lines and it shows the full text-> returns 2 and
ellipsize
. ThevisibleText
only returns the actual text in the label.TODO