react-native-navigation的迁移库

RNNTopBarOptions.h 1.0KB

1234567891011121314151617181920212223242526272829
  1. #import <Foundation/Foundation.h>
  2. extern const NSInteger BLUR_TOPBAR_TAG;
  3. @interface RNNTopBarOptions : NSObject
  4. @property (nonatomic, strong) NSNumber* backgroundColor;
  5. @property (nonatomic, strong) NSNumber* textColor;
  6. @property (nonatomic, strong) NSString* title;
  7. @property (nonatomic, strong) NSString* textFontFamily;
  8. @property (nonatomic, strong) NSNumber* hidden;
  9. @property (nonatomic, strong) NSNumber* hideOnScroll;
  10. @property (nonatomic, strong) NSNumber* buttonColor;
  11. @property (nonatomic, strong) NSNumber* translucent;
  12. @property (nonatomic, strong) NSNumber* transparent;
  13. @property (nonatomic, strong) NSNumber* drawUnder;
  14. @property (nonatomic, strong) NSNumber* textFontSize;
  15. @property (nonatomic, strong) NSNumber* noBorder;
  16. @property (nonatomic, strong) NSNumber* blur;
  17. @property (nonatomic, strong) NSNumber* animateHide;
  18. @property (nonatomic, strong) NSNumber* largeTitle;
  19. @property (nonatomic, strong) NSString* testID;
  20. -(instancetype)init;
  21. -(instancetype)initWithDict:(NSDictionary *)topBarOptions;
  22. -(void)mergeWith:(NSDictionary*)otherOptions;
  23. @end