This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree 2 files changed +4
-4
lines changed
shell/platform/darwin/ios 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,8 @@ source_set("flutter_framework_source_arc") {
68
68
" framework/Source/FlutterTextInputPlugin.mm" ,
69
69
" framework/Source/FlutterTextureRegistryRelay.h" ,
70
70
" framework/Source/FlutterTextureRegistryRelay.mm" ,
71
+ " framework/Source/KeyCodeMap.g.mm" ,
72
+ " framework/Source/KeyCodeMap_Internal.h" ,
71
73
" framework/Source/UIViewController+FlutterScreenAndSceneIfLoaded.h" ,
72
74
" framework/Source/UIViewController+FlutterScreenAndSceneIfLoaded.mm" ,
73
75
]
@@ -129,8 +131,6 @@ source_set("flutter_framework_source") {
129
131
" framework/Source/FlutterView.mm" ,
130
132
" framework/Source/FlutterViewController.mm" ,
131
133
" framework/Source/FlutterViewController_Internal.h" ,
132
- " framework/Source/KeyCodeMap.g.mm" ,
133
- " framework/Source/KeyCodeMap_Internal.h" ,
134
134
" framework/Source/SemanticsObject.h" ,
135
135
" framework/Source/SemanticsObject.mm" ,
136
136
" framework/Source/accessibility_bridge.h" ,
Original file line number Diff line number Diff line change 329
329
};
330
330
331
331
API_AVAILABLE (ios(13.4 ))
332
- NSDictionary<NSString*, NSNumber*>* specialKeyMapping = [[NSDictionary alloc] initWithDictionary: @{
332
+ NSDictionary<NSString*, NSNumber*>* specialKeyMapping = @{
333
333
@" UIKeyInputEscape" : @(0x10000001b ),
334
334
@" UIKeyInputF1" : @(0x100000801 ),
335
335
@" UIKeyInputF2" : @(0x100000802 ),
351
351
@" UIKeyInputEnd" : @(0x10000000d ),
352
352
@" UIKeyInputPageUp" : @(0x100000308 ),
353
353
@" UIKeyInputPageDown" : @(0x100000307 ),
354
- }] ;
354
+ };
355
355
356
356
const uint64_t kCapsLockPhysicalKey = 0x00070039 ;
357
357
const uint64_t kCapsLockLogicalKey = 0x100000104 ;
You can’t perform that action at this time.
0 commit comments