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. #import "RNNBackButtonOptions.h"
  8. #import "RNNButtonOptions.h"
  9. @interface RNNTopBarOptions : RNNOptions
  10. @property (nonatomic, strong) NSArray* leftButtons;
  11. @property (nonatomic, strong) NSArray* rightButtons;
  12. @property (nonatomic, strong) NSNumber* visible;
  13. @property (nonatomic, strong) NSNumber* hideOnScroll;
  14. @property (nonatomic, strong) NSNumber* buttonColor;
  15. @property (nonatomic, strong) NSNumber* translucent;
  16. @property (nonatomic, strong) NSNumber* transparent;
  17. @property (nonatomic, strong) NSNumber* drawBehind;
  18. @property (nonatomic, strong) NSNumber* noBorder;
  19. @property (nonatomic, strong) NSNumber* blur;
  20. @property (nonatomic, strong) NSNumber* animate;
  21. @property (nonatomic, strong) NSString* testID;
  22. @property (nonatomic, strong) RNNLargeTitleOptions* largeTitle;
  23. @property (nonatomic, strong) RNNTitleOptions* title;
  24. @property (nonatomic, strong) RNNSubtitleOptions* subtitle;
  25. @property (nonatomic, strong) RNNBackgroundOptions* background;
  26. @property (nonatomic, strong) RNNBackButtonOptions* backButton;
  27. @property (nonatomic, strong) RNNButtonOptions* button;
  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