I have two <textField> one by one. Is possible to automatically stretch or shrink them depending on text length? The only attribute which hit my eyes, was the isStretchWithOverflow but cause that one text is covering another – that is not what I meant. Anybody helps? Is it even possible?
I have two <textField> one by one. Is possible to automatically stretch or shrink
Share
I assume you are talking about stretch vertically.
In that case
isStretchWithOverflowis exactly what you need.The second
<textfield>covered by first one is because the position setting. You probably has it setting toFix, so it dose not move while first one stretched. Change the position setting of second<textfield>toFloatshould works.