[go: nahoru, domu]

blob: 1978a2169f986ae4acf3e53da9c8a6fa92655557 [file] [log] [blame]
/*
* Copyright 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.compose.ui.text.input
/**
* Enums used for indicating keyboard types
*/
enum class KeyboardType {
/**
* A keyboard type used to request an IME that shows regular keyboard.
*/
Text,
/**
* A keyboard type used to request an IME that is capable of inputting ASCII characters.
*/
Ascii,
/**
* A keyboard type used to request an that is capable of inputting digits.
*/
Number,
/**
* A keyboard type used to request an IME that is capable of inputting phone numbers.
*/
Phone,
/**
* A keyboard type used to request an IME that is capable of inputting URIs.
*/
Uri,
/**
* A keyboard type used to request an IME that is capable of inputting email addresses.
*/
Email,
/**
* A keyboard type used to request an IME that is capable of inputting password
*/
Password,
/**
* A keyboard type used to request an IME that is capable of inputting number password.
*/
NumberPassword
}