如何在JetpackCompose中为TextField设置inputType
我想限制用户可以在 Jetpack Compose 的 TextField 中输入的内容。我怎么做?
xml 中的等效项是inputType
:
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="number"
android:hint="Only numbers please!" />
回答
使用keyboardOptions
:
TextField(
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Number)
THE END
二维码