react-native-navigation的迁移库

RNNTopBarOptions.h 1.1KB

12345678910111213141516171819202122232425262728
  1. #import "RNNOptions.h"
  2. @interface RNNTopBarOptions : RNNOptions
  3. @property (nonatomic, strong) NSArray* leftButtons;
  4. @property (nonatomic, strong) NSArray* rightButtons;
  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* transparent;
  14. @property (nonatomic, strong) NSNumber* drawUnder;
  15. @property (nonatomic, strong) NSNumber* textFontSize;
  16. @property (nonatomic, strong) NSNumber* noBorder;
  17. @property (nonatomic, strong) NSNumber* blur;
  18. @property (nonatomic, strong) NSNumber* animateHide;
  19. @property (nonatomic, strong) NSNumber* largeTitle;
  20. @property (nonatomic, strong) NSString* testID;
  21. @property (nonatomic, strong) NSString* customTitleViewName;
  22. @property (nonatomic, strong) NSString* customViewName;
  23. @end