1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
-
- extern const NSInteger BLUR_STATUS_TAG;
- extern const NSInteger BLUR_TOPBAR_TAG;
-
- @interface RNNNavigationOptions : NSObject
-
- @property (nonatomic, strong) NSNumber* topBarBackgroundColor;
- @property (nonatomic, strong) NSNumber* topBarTextColor;
- @property (nonatomic, strong) NSNumber* statusBarHidden;
- @property (nonatomic, strong) NSString* title;
- @property (nonatomic, strong) NSNumber* screenBackgroundColor;
- @property (nonatomic, strong) NSString* topBarTextFontFamily;
- @property (nonatomic, strong) NSNumber* topBarHidden;
- @property (nonatomic, strong) NSNumber* topBarHideOnScroll;
- @property (nonatomic, strong) NSNumber* topBarButtonColor;
- @property (nonatomic, strong) NSNumber* topBarTranslucent;
- @property (nonatomic, strong) NSString* tabBadge;
- @property (nonatomic, strong) NSNumber* topBarTextFontSize;
- @property (nonatomic, strong) id orientation;
- @property (nonatomic, strong) NSArray* leftButtons;
- @property (nonatomic, strong) NSArray* rightButtons;
- @property (nonatomic, strong) NSNumber* topBarNoBorder;
- @property (nonatomic, strong) NSNumber* statusBarBlur;
- @property (nonatomic, strong) NSNumber* statusBarHideWithTopBar;
- @property (nonatomic, strong) NSNumber* tabBarHidden;
- @property (nonatomic, strong) NSNumber* topBarBlur;
- @property (nonatomic, strong) NSNumber* animateTopBarHide;
-
-
- - (UIInterfaceOrientationMask)supportedOrientations;
-
- -(instancetype)init;
- -(instancetype)initWithDict:(NSDictionary *)navigationOptions;
-
- -(void)applyOn:(UIViewController*)viewController;
- -(void)mergeWith:(NSDictionary*)otherOptions;
-
- @end
|