12345678910111213141516171819202122232425262728 |
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
-
- @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* setTabBadge;
-
-
-
- -(instancetype)init;
- -(instancetype)initWithDict:(NSDictionary *)navigationOptions;
-
- -(void)applyOn:(UIViewController*)viewController;
- -(void)mergeWith:(NSDictionary*)otherOptions;
-
- @end
-
|