Skip to content
This repository has been archived by the owner on Jan 27, 2024. It is now read-only.

Latest commit

 

History

History
36 lines (28 loc) · 690 Bytes

keyboardtype.md

File metadata and controls

36 lines (28 loc) · 690 Bytes
redirect_to layout tags title
page
api
Fyne API "mobile.KeyboardType"

mobile.KeyboardType


import "fyne.io/fyne/v2/driver/mobile"

Usage

type KeyboardType

type KeyboardType int32

KeyboardType represents a type of virtual keyboard

const (
	// DefaultKeyboard is the keyboard with default input style and "return" return key
	DefaultKeyboard KeyboardType = iota
	// SingleLineKeyboard is the keyboard with default input style and "Done" return key
	SingleLineKeyboard
	// NumberKeyboard is the keyboard with number input style and "Done" return key
	NumberKeyboard
)