We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 358a24c commit 3f99878Copy full SHA for 3f99878
shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.mm
@@ -19,7 +19,9 @@ static UIKeyboardType ToUIKeyboardType(NSDictionary* type) {
19
if ([inputType isEqualToString:@"TextInputType.number"]) {
20
if ([type[@"signed"] boolValue])
21
return UIKeyboardTypeNumbersAndPunctuation;
22
- return UIKeyboardTypeDecimalPad;
+ if ([type[@"decimal"] boolValue])
23
+ return UIKeyboardTypeDecimalPad;
24
+ return UIKeyboardTypeNumberPad;
25
}
26
if ([inputType isEqualToString:@"TextInputType.phone"])
27
return UIKeyboardTypePhonePad;
0 commit comments