首页 > 解决方案 > 顶部有字母和数字的键盘(在 Flutter 中)

问题描述

是否有可能让键盘出现在字母上方的数字。像这样的东西:

在此处输入图像描述

和这个

在此处输入图像描述

标签: flutter

解决方案


/// Optimize for passwords that are visible to the user.
///
/// Requests a keyboard with ready access to both letters and numbers.
static const TextInputType visiblePassword = TextInputType._(7);

上面的代码部分来自 text_input.dart 文件。因此尝试以下方法。它可能有效,但不确定:

TextField(
    keyboardType: TextInputType.visiblePassword
)

推荐阅读