I need to paste the Arabic text into the input field, I can handle it for mac as there is
if (((Input.GetKey(KeyCode.RightCommand) || Input.GetKey(KeyCode.LeftCommand))
&& Input.GetKeyDown(KeyCode.V)) || Input.GetMouseButtonUp(1))
{
inputField.text = ArabicHelper.faConvert(ClipboardHelper.Clipboard);
}
I placed this code in the update method and copied text will be in ClipboardHelper. Clipboard
But how can I recognize that user is pasting some content in iOS or Android is there any events or keys to recognizing that pasting.