react-native-navigation的迁移库

RNNTopBarOptions.h 1.4KB

1234567891011121314151617181920212223242526272829303132333435
  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. @interface RNNTopBarOptions : RNNOptions
  9. @property (nonatomic, strong) NSArray* leftButtons;
  10. @property (nonatomic, strong) NSArray* rightButtons;
  11. @property (nonatomic, strong) NSNumber* visible;
  12. @property (nonatomic, strong) NSNumber* hideOnScroll;
  13. @property (nonatomic, strong) NSNumber* buttonColor;
  14. @property (nonatomic, strong) NSNumber* translucent;
  15. @property (nonatomic, strong) NSNumber* transparent;
  16. @property (nonatomic, strong) NSNumber* drawBehind;
  17. @property (nonatomic, strong) NSNumber* noBorder;
  18. @property (nonatomic, strong) NSNumber* blur;
  19. @property (nonatomic, strong) NSNumber* animate;
  20. @property (nonatomic, strong) NSString* testID;
  21. @property (nonatomic, strong) RNNLargeTitleOptions* largeTitle;
  22. @property (nonatomic, strong) RNNTitleOptions* title;
  23. @property (nonatomic, strong) RNNSubtitleOptions* subtitle;
  24. @property (nonatomic, strong) RNNBackgroundOptions* background;
  25. @property (nonatomic, strong) RNNBackButtonOptions* backButton;
  26. @property (nonatomic, strong) NSNumber* searchBar;
  27. @property (nonatomic, strong) NSNumber* searchBarHiddenWhenScrolling;
  28. @property (nonatomic, strong) NSString* searchBarPlaceholder;
  29. @property (nonatomic, strong) RNNComponentOptions* component;
  30. @end