Hello! There is no Label you need in Appery.io builder, but you can use JS to change that.
1) Add Label from Components panel
2) Through More properties add attribute "for" and add Input name you want to bind that label
3) On page Show run the following code:
codefunction changeToLabel(labelName) {
var div = $("div[dsid=" + labelName + "]");
if (div.length > 0) {
div = div.eq(0);
var label = $('<label>');
label.text(div.text());
var forAttr = div.attr("for");
label.attr("for", Appery(forAttr).attr("id"));
label.insertBefore(div);
div.remove();
}
}
changeToLabel("mobilelabelName");/code
If you want to change label on several screens you can create separate JS asset.