mirror of
https://github.com/status-im/react-native.git
synced 2025-01-22 23:41:49 +00:00
29 lines
589 B
Objective-C
29 lines
589 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import "RCTNavigatorManager.h"
|
|
|
|
#import "RCTConvert.h"
|
|
#import "RCTNavigator.h"
|
|
#import "RCTShadowView.h"
|
|
|
|
@implementation RCTNavigatorManager
|
|
|
|
- (UIView *)viewWithEventDispatcher:(RCTJavaScriptEventDispatcher *)eventDispatcher
|
|
{
|
|
return [[RCTNavigator alloc] initWithFrame:CGRectZero eventDispatcher:eventDispatcher];
|
|
}
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(requestedTopOfStack)
|
|
|
|
- (NSDictionary *)customDirectEventTypes
|
|
{
|
|
return @{
|
|
@"topNavigationProgress": @{
|
|
@"registrationName": @"onNavigationProgress"
|
|
},
|
|
};
|
|
}
|
|
|
|
@end
|
|
|