react-native-navigation的迁移库

RNNTopBarOptions.h 1.3KB

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