react-native-navigation的迁移库

RNNTopBarOptions.h 911B

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