Hi!
Im trying to implement key listeners in my Xamarin Forms app. I tried using an Editor-view and react to key presses via the Editors TextChanged event, but since the event doesn't fire on things like Shift, or Backspace when nothing has been entered into the editor, I think i'm gonna have to implement platform dependent key listeners. What I want to do is react to key events in order to send information about the key being pressed to my server application.
Has anyone done anything like this and know how I should proceed? My top priority is making this function properly on Android, and then move on to iOS.
Much Appreciated!