When I try to enter in the textfield, the placeholderText is displayed as label of the Textfield.
Is there any way to remove the placeholderText when Textfield is active and filled?
I didn't find any solution for this.
You could try simply clearing the place holder text when you don't want it to be visible, something like this:
placeholderText: focus || text ? "" : "Enter name"