namespace CommanderApp.Services; public interface IKeyboardService { void SetupKeyboardHandling(ContentPage page); event EventHandler KeyPressed; } public class KeyPressedEventArgs : EventArgs { public string Key { get; set; } = string.Empty; public string Platform { get; set; } = string.Empty; }