react-native-navigation的迁移库

RNNTopBarOptions.h 976B

123456789101112131415161718192021222324252627
  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* textFontSize;
  14. @property (nonatomic, strong) NSNumber* noBorder;
  15. @property (nonatomic, strong) NSNumber* blur;
  16. @property (nonatomic, strong) NSNumber* animateHide;
  17. @property (nonatomic, strong) NSNumber* largeTitle;
  18. -(instancetype)init;
  19. -(instancetype)initWithDict:(NSDictionary *)topBarOptions;
  20. -(void)mergeWith:(NSDictionary*)otherOptions;
  21. @end