1 // Copyright 2015-present 650 Industries. All rights reserved. 2 3 #import <Foundation/Foundation.h> 4 5 FOUNDATION_EXPORT NSNotificationName kEXKernelDidChangeMenuBehaviorNotification; 6 7 @interface EXKernelDevKeyCommands : NSObject 8 9 + (instancetype)sharedInstance; 10 11 /** 12 * Whether to enable legacy gesture/button for the Expo menu. 13 */ 14 @property (nonatomic, assign) BOOL isLegacyMenuBehaviorEnabled; 15 16 /** 17 * Whether the legacy button is available. 18 */ 19 @property (nonatomic, readonly) BOOL isLegacyMenuButtonAvailable; 20 21 @end 22