mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 12:34:17 +00:00
7060141247
- [ReactNative] Move merge & mergeInto from downstream to vendor | Christopher Chedeau - [ReactNative] Replace all the call sites of mergeInto by Object.assign | Christopher Chedeau - [WIP] Migrated View Managers over to new architecture | Nick Lockwood - [ReactNative] Replace all the call sites of copyProperties by Object.assign | Christopher Chedeau - [ReactNative] Migrate navigator.geolocation to open source | Christopher Chedeau - [ReactNative] Remove README.md, LICENSE and .travis.yml from fbobjc | Christopher Chedeau - [react-packager] Better transform errors | Amjad Masad - [React Native][react-packager] Fix test runner and fialing tests | Amjad Masad
27 lines
776 B
Objective-C
27 lines
776 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "RCTInvalidating.h"
|
|
|
|
@class RCTEventDispatcher;
|
|
|
|
@interface RCTNavigator : UIView <RCTInvalidating>
|
|
|
|
@property (nonatomic, strong) UIView *reactNavSuperviewLink;
|
|
@property (nonatomic, assign) NSInteger requestedTopOfStack;
|
|
|
|
- (instancetype)initWithEventDispatcher:(RCTEventDispatcher *)eventDispatcher NS_DESIGNATED_INITIALIZER;
|
|
|
|
/**
|
|
* Schedules a JavaScript navigation and prevents `UIKit` from navigating until
|
|
* JavaScript has sent its scheduled navigation.
|
|
*
|
|
* @returns Whether or not a JavaScript driven navigation could be
|
|
* scheduled/reserved. If returning `NO`, JavaScript should usually just do
|
|
* nothing at all.
|
|
*/
|
|
- (BOOL)requestSchedulingJavaScriptNavigation;
|
|
|
|
@end
|