From fc2bbd7124fc8563ce631dfcfa101c0c7c09ebea Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Wed, 12 Apr 2017 11:37:54 -0700 Subject: [PATCH] Eliminate UITextInput.textContentType (flutter/engine#3587) textContentType was added in iOS 10, and we target iOS 8. Either way the framework doesn't (yet) include support for this; keyboard type covers most bases. --- .../darwin/ios/framework/Source/FlutterTextInputPlugin.mm | 1 - 1 file changed, 1 deletion(-) diff --git a/engine/src/flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.mm b/engine/src/flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.mm index d06cc708fe..b498680005 100644 --- a/engine/src/flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.mm +++ b/engine/src/flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.mm @@ -109,7 +109,6 @@ static UIKeyboardType ToUIKeyboardType(NSString* inputType) { @property(nonatomic) UIKeyboardType keyboardType; @property(nonatomic) UIReturnKeyType returnKeyType; @property(nonatomic, getter=isSecureTextEntry) BOOL secureTextEntry; -@property(nonatomic, copy) UITextContentType textContentType; @property(nonatomic, assign) id textInputDelegate;