This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
shell/platform/darwin/ios/framework/Source Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2535,6 +2535,8 @@ FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterSemanti
25352535FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterSpellCheckPlugin.h
25362536FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterSpellCheckPlugin.mm
25372537FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterSpellCheckPluginTest.mm
2538+ FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputClient.h
2539+ FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputClient_UITextInput.mm
25382540FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputDelegate.h
25392541FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.h
25402542FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.mm
Original file line number Diff line number Diff line change 4949
5050// TextInputConfiguration.autofill and sub-field names
5151static NSString * const kAutofillProperties = @" autofill" ;
52- static NSString * const kautofillID = @" uniqueIdentifier" ;
52+ static NSString * const kAutofillID = @" uniqueIdentifier" ;
5353static NSString * const kAutofillEditingValue = @" editingValue" ;
5454static NSString * const kAutofillHints = @" hints" ;
5555
@@ -284,7 +284,7 @@ static UITextContentType ToUITextContentType(NSArray<NSString*>* hints) {
284284static NSString * AutofillIDFromDictionary (NSDictionary * dictionary) {
285285 NSDictionary * autofill = dictionary[kAutofillProperties ];
286286 if (autofill) {
287- return autofill[kautofillID ];
287+ return autofill[kAutofillID ];
288288 }
289289
290290 // When autofill is nil, the field may still need an autofill id
You can’t perform that action at this time.
0 commit comments