mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
16 lines
278 B
Objective-C
16 lines
278 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import "RCTSwitch.h"
|
|
|
|
#import "RCTEventDispatcher.h"
|
|
#import "UIView+ReactKit.h"
|
|
|
|
@implementation RCTSwitch
|
|
|
|
- (void)setOn:(BOOL)on animated:(BOOL)animated {
|
|
_wasOn = on;
|
|
[super setOn:on animated:animated];
|
|
}
|
|
|
|
@end
|