react-native/ReactKit/Views/RCTNavigatorManager.m

29 lines
510 B
Mathematica
Raw Normal View History

2015-01-30 01:10:49 +00:00
// Copyright 2004-present Facebook. All Rights Reserved.
#import "RCTNavigatorManager.h"
#import "RCTConvert.h"
#import "RCTNavigator.h"
#import "RCTShadowView.h"
@implementation RCTNavigatorManager
- (UIView *)view
2015-01-30 01:10:49 +00:00
{
return [[RCTNavigator alloc] initWithEventDispatcher:self.eventDispatcher];
2015-01-30 01:10:49 +00:00
}
RCT_EXPORT_VIEW_PROPERTY(requestedTopOfStack)
- (NSDictionary *)customDirectEventTypes
{
return @{
@"topNavigationProgress": @{
@"registrationName": @"onNavigationProgress"
},
};
}
@end