You cannot receive “touch” or “tap” events when the user touches native UI. This is because native UI will steal the event for its own purposes. This is actually how it works at the native UI level on *all* platforms (Apple, Google, and Microsoft).
What you can do instead is detect when a native TextField or TextBox receives/loses the focus. You can detect this via the “began” and “ended” phases from a TextField/TextBox’s “userInput” events.