mirror of
https://github.com/DefinedNet/mobile_nebula.git
synced 2025-01-18 11:17:06 +00:00
Allow IP address entry on non-US locales (#114)
This commit is contained in:
parent
4bbd6c01ea
commit
5cc41f1129
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ class IPField extends StatelessWidget {
|
|||
return SizedBox(
|
||||
width: ipWidth,
|
||||
child: SpecialTextField(
|
||||
keyboardType: ipOnly ? TextInputType.numberWithOptions(decimal: true) : null,
|
||||
keyboardType: ipOnly ? TextInputType.numberWithOptions(decimal: true, signed: true) : null,
|
||||
textAlign: textAlign,
|
||||
autofocus: autoFocus,
|
||||
focusNode: focusNode,
|
||||
|
|
Loading…
Reference in a new issue