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
|
|
|
|
|
2015-02-04 00:15:20 +00:00
|
|
|
- (UIView *)view
|
2015-01-30 01:10:49 +00:00
|
|
|
{
|
2015-02-04 00:15:20 +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
|
|
|
|
|