1234567891011121314151617181920212223242526272829 |
- #import <Foundation/Foundation.h>
-
- extern const NSInteger BLUR_TOPBAR_TAG;
-
- @interface RNNTopBarOptions : NSObject
-
- @property (nonatomic, strong) NSNumber* backgroundColor;
- @property (nonatomic, strong) NSNumber* textColor;
- @property (nonatomic, strong) NSString* title;
- @property (nonatomic, strong) NSString* textFontFamily;
- @property (nonatomic, strong) NSNumber* hidden;
- @property (nonatomic, strong) NSNumber* hideOnScroll;
- @property (nonatomic, strong) NSNumber* buttonColor;
- @property (nonatomic, strong) NSNumber* translucent;
- @property (nonatomic, strong) NSNumber* transparent;
- @property (nonatomic, strong) NSNumber* drawUnder;
- @property (nonatomic, strong) NSNumber* textFontSize;
- @property (nonatomic, strong) NSNumber* noBorder;
- @property (nonatomic, strong) NSNumber* blur;
- @property (nonatomic, strong) NSNumber* animateHide;
- @property (nonatomic, strong) NSNumber* largeTitle;
- @property (nonatomic, strong) NSString* testID;
-
- -(instancetype)init;
- -(instancetype)initWithDict:(NSDictionary *)topBarOptions;
- -(void)mergeWith:(NSDictionary*)otherOptions;
-
- @end
|