mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
56e0309b78
Summary: Changelog: [internal] "onDismiss" event wasn't called in Fabric. This diff adds it. Paper implementation of Modal uses `RCTEventEmitter` instead of callback to deliver the event. To align better with Paper, Fabric will follow this pattern. Reviewed By: shergin Differential Revision: D26911312 fbshipit-source-id: b0de619c5a02c3378d1f7ac3ce1b705bb5fb634d
25 lines
535 B
Objective-C
25 lines
535 B
Objective-C
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <React/RCTBridge.h>
|
|
#import <React/RCTBridgeModule.h>
|
|
#import <React/RCTEventEmitter.h>
|
|
|
|
@interface RCTModalManager : RCTEventEmitter <RCTBridgeModule>
|
|
|
|
- (void)modalDismissed:(NSNumber *)modalID;
|
|
|
|
@end
|
|
|
|
@interface RCTBridge (RCTModalManager)
|
|
|
|
@property (nonatomic, readonly) RCTModalManager *modalManager;
|
|
|
|
@end
|