Files
hackathon-v-escape-4ff8b5a6…/frontend/node_modules/react-native-gesture-handler/apple/RNGestureHandlerButton.h
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

23 lines
489 B
Objective-C

//
// RNGestureHandlerButton.h
// RNGestureHandler
//
// Created by Krzysztof Magiera on 12/10/2017.
// Copyright © 2017 Software Mansion. All rights reserved.
//
#import "RNGestureHandler.h"
#if TARGET_OS_OSX
@interface RNGestureHandlerButton : NSControl
#else
@interface RNGestureHandlerButton : UIControl
#endif
/**
* Insets used when hit testing inside this view.
*/
@property (nonatomic, assign) UIEdgeInsets hitTestEdgeInsets;
@property (nonatomic) BOOL userEnabled;
@end