device.go 486 B

123456789101112
  1. // Package mobile provides mobile specific driver functionality.
  2. package mobile
  3. // Device describes functionality only available on mobile
  4. type Device interface {
  5. // Request that the mobile device show the touch screen keyboard (standard layout)
  6. ShowVirtualKeyboard()
  7. // Request that the mobile device show the touch screen keyboard (custom layout)
  8. ShowVirtualKeyboardType(KeyboardType)
  9. // Request that the mobile device dismiss the touch screen keyboard
  10. HideVirtualKeyboard()
  11. }