顶部有字母和数字的键盘(在 Flutter 中)

Lou*_*ler 6 flutter

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

在此输入图像描述

和这个

在此输入图像描述

Md *_*har 6

/// 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);
Run Code Online (Sandbox Code Playgroud)

上面的代码部分来自text_input.dart文件。因此请尝试以下操作。它可能会起作用,但不确定:

TextField(
    keyboardType: TextInputType.visiblePassword
)
Run Code Online (Sandbox Code Playgroud)