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.
This commit is contained in:
Chris Bracken
2017-04-12 11:37:54 -07:00
committed by GitHub
parent e0d4f1305b
commit fc2bbd7124

View File

@@ -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<FlutterTextInputDelegate> textInputDelegate;