Uso VS Code e ao utilizar o KeyboardType não apresenta o teclado.
body: Column(
children: <Widget>[
Padding(
padding: const EdgeInsets.all(8.0),
child: TextField(
style: TextStyle(fontSize: 24.0),
decoration: InputDecoration(
labelText: 'Numero da conta',
hintText: '0000',
),
**keyboardType: TextInputType.number**,
),
),
...