This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree 2 files changed +4
-2
lines changed
shell/platform/darwin/ios/framework/Source 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
2535
2535
FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterSpellCheckPlugin.h
2536
2536
FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterSpellCheckPlugin.mm
2537
2537
FILE: ../../../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
2538
2540
FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputDelegate.h
2539
2541
FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.h
2540
2542
FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.mm
Original file line number Diff line number Diff line change 49
49
50
50
// TextInputConfiguration.autofill and sub-field names
51
51
static NSString * const kAutofillProperties = @" autofill" ;
52
- static NSString * const kautofillID = @" uniqueIdentifier" ;
52
+ static NSString * const kAutofillID = @" uniqueIdentifier" ;
53
53
static NSString * const kAutofillEditingValue = @" editingValue" ;
54
54
static NSString * const kAutofillHints = @" hints" ;
55
55
@@ -284,7 +284,7 @@ static UITextContentType ToUITextContentType(NSArray<NSString*>* hints) {
284
284
static NSString * AutofillIDFromDictionary (NSDictionary * dictionary) {
285
285
NSDictionary * autofill = dictionary[kAutofillProperties ];
286
286
if (autofill) {
287
- return autofill[kautofillID ];
287
+ return autofill[kAutofillID ];
288
288
}
289
289
290
290
// When autofill is nil, the field may still need an autofill id
You can’t perform that action at this time.
0 commit comments