react-native-navigation的迁移库

RNNTopBarOptions.h 1.5KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #import "RNNOptions.h"
  2. #import "RNNLargeTitleOptions.h"
  3. #import "RNNTitleOptions.h"
  4. #import "RNNSubtitleOptions.h"
  5. #import "RNNBackgroundOptions.h"
  6. #import "RNNComponentOptions.h"
  7. @interface RNNTopBarOptions : RNNOptions
  8. @property (nonatomic, strong) NSArray* leftButtons;
  9. @property (nonatomic, strong) NSArray* rightButtons;
  10. @property (nonatomic, strong) NSNumber* visible;
  11. @property (nonatomic, strong) NSNumber* hideOnScroll;
  12. @property (nonatomic, strong) NSNumber* buttonColor;
  13. @property (nonatomic, strong) NSNumber* translucent;
  14. @property (nonatomic, strong) NSNumber* transparent;
  15. @property (nonatomic, strong) NSNumber* drawBehind;
  16. @property (nonatomic, strong) NSNumber* noBorder;
  17. @property (nonatomic, strong) NSNumber* blur;
  18. @property (nonatomic, strong) NSNumber* animate;
  19. @property (nonatomic, strong) NSString* testID;
  20. @property (nonatomic, strong) RNNLargeTitleOptions* largeTitle;
  21. @property (nonatomic, strong) RNNTitleOptions* title;
  22. @property (nonatomic, strong) RNNSubtitleOptions* subtitle;
  23. @property (nonatomic, strong) RNNBackgroundOptions* background;
  24. @property (nonatomic, strong) NSNumber* backButtonImage;
  25. @property (nonatomic, strong) NSNumber* backButtonHidden;
  26. @property (nonatomic, strong) NSString* backButtonTitle;
  27. @property (nonatomic, strong) NSNumber* hideBackButtonTitle;
  28. @property (nonatomic, strong) NSNumber* searchBar;
  29. @property (nonatomic, strong) NSNumber* searchBarHiddenWhenScrolling;
  30. @property (nonatomic, strong) NSString* searchBarPlaceholder;
  31. @property (nonatomic, strong) RNNComponentOptions* component;
  32. @end