react-native-navigation的迁移库

RNNTopBarOptions.h 1.3KB

123456789101112131415161718192021222324252627282930313233
  1. #import "RNNOptions.h"
  2. #import "RNNTitleOptions.h"
  3. #import "RNNSubtitleOptions.h"
  4. #import "RNNBackgroundOptions.h"
  5. #import "RNNComponentOptions.h"
  6. @interface RNNTopBarOptions : RNNOptions
  7. @property (nonatomic, strong) NSArray* leftButtons;
  8. @property (nonatomic, strong) NSArray* rightButtons;
  9. @property (nonatomic, strong) NSNumber* visible;
  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* drawBehind;
  15. @property (nonatomic, strong) NSNumber* noBorder;
  16. @property (nonatomic, strong) NSNumber* blur;
  17. @property (nonatomic, strong) NSNumber* animate;
  18. @property (nonatomic, strong) NSNumber* largeTitle;
  19. @property (nonatomic, strong) NSString* testID;
  20. @property (nonatomic, strong) RNNTitleOptions* title;
  21. @property (nonatomic, strong) RNNSubtitleOptions* subtitle;
  22. @property (nonatomic, strong) RNNBackgroundOptions* background;
  23. @property (nonatomic, strong) NSNumber* backButtonImage;
  24. @property (nonatomic, strong) NSNumber* backButtonHidden;
  25. @property (nonatomic, strong) NSString* backButtonTitle;
  26. @property (nonatomic, strong) NSNumber* hideBackButtonTitle;
  27. @property (nonatomic, strong) RNNComponentOptions* component;
  28. @end