-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
Description
I've found a graphic bug that occurs with TextAreaRow ;
I want to use that row to display non editable disclaimer text.
But when I do using the value property, a label is present with a duplicated version of the text.
I tried to force to an empty string the title and the placeholder with the same result.
Here is a screenshot of what happens. I've scrolled a little to be sure that the text is visible. It doesn't scroll and stay at the center.
Here is the code I use for this particular row :
<<< TextAreaRow("disclaimer") {
$0.value = NSLocalizedString("DISCLAIMER", comment: "")
$0.disabled = true
}