react-native-navigation的迁移库

RNNNavigationOptions.h 390B

12345678910111213141516
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. @interface RNNNavigationOptions : NSObject
  4. @property (nonatomic, strong) NSNumber* topBarBackgroundColor;
  5. @property (nonatomic, strong) NSNumber* statusBarHidden;
  6. @property (nonatomic, strong) NSString* title;
  7. -(instancetype)initWithDict:(NSDictionary *)navigationOptions;
  8. -(void)apply:(UIViewController*)viewController;
  9. @end