如何在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)


以上是如何在JetpackCompose中为TextField设置inputType的全部内容。
THE END
分享
二维码
< <上一篇
下一篇>>