react-native/ReactKit/Views/RCTNavigatorManager.m
2015-01-29 17:10:49 -08:00

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