如何在数字键盘中包含加号

How to include plus symbol to a numeric keyboard

我想知道如何在我的应用程序中实现带有数字键盘的 TextFormField,其中包括加号(“+”),目的是方便用户输入国际 phone 数字。

 TextFormField(
    controller: phoneNumberController,
    keyboardType: TextInputType.number, // Fix to include plus symbol
),

在 TextInputType.phone

更改类型 TextInputType.number
TextFormField(
    controller: phoneNumberController,
    keyboardType: TextInputType.phone, // Fix to include plus symbol
),