react-native-navigation的迁移库

RNNTopBarOptions.h 871B

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