//go:build ios package application // iOS key codes - these would map to UIKeyCommand const ( KeyReturn = "Return" KeyEscape = "Escape" KeyDelete = "Delete" KeyTab = "Tab" KeySpace = "Space" KeyUp = "Up" KeyDown = "Down" KeyLeft = "Left" KeyRight = "Right" KeyHome = "Home" KeyEnd = "End" KeyPageUp = "PageUp" KeyPageDown = "PageDown" )