react-native-navigation的迁移库

RNNTopBarOptions.h 1.0KB

12345678910111213141516171819202122232425262728
  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. @property (nonatomic, strong) NSString* testID;
  19. -(instancetype)init;
  20. -(instancetype)initWithDict:(NSDictionary *)topBarOptions;
  21. -(void)mergeWith:(NSDictionary*)otherOptions;
  22. @end