Hi,
I need to set placeholder text during runtime. Upon inspecting source code I realized it is done inside the plugin right?
Something like:
public void setPlaceholderText(string text) {
var data = new JsonObject();
data["msg"] = SET_PTEXT;
data["placeholder"] = text;
Execute(data);
}
Then there need to be appropriate backend code in plugin (Android / iOS)
But I dont know how to compile the plugin code...
Hi,
I need to set placeholder text during runtime. Upon inspecting source code I realized it is done inside the plugin right?
Something like:
Then there need to be appropriate backend code in plugin (Android / iOS)
But I dont know how to compile the plugin code...