react-native-navigation的迁移库

RNNTopBarOptions.h 1.2KB

123456789101112131415161718192021222324252627282930
  1. #import "RNNOptions.h"
  2. #import "RNNTitleOptions.h"
  3. #import "RNNBackgrounOptions.h"
  4. @interface RNNTopBarOptions : RNNOptions
  5. @property (nonatomic, strong) NSArray* leftButtons;
  6. @property (nonatomic, strong) NSArray* rightButtons;
  7. @property (nonatomic, strong) NSNumber* visible;
  8. @property (nonatomic, strong) NSNumber* hideOnScroll;
  9. @property (nonatomic, strong) NSNumber* buttonColor;
  10. @property (nonatomic, strong) NSNumber* translucent;
  11. @property (nonatomic, strong) NSNumber* transparent;
  12. @property (nonatomic, strong) NSNumber* drawBehind;
  13. @property (nonatomic, strong) NSNumber* noBorder;
  14. @property (nonatomic, strong) NSNumber* blur;
  15. @property (nonatomic, strong) NSNumber* animate;
  16. @property (nonatomic, strong) NSNumber* largeTitle;
  17. @property (nonatomic, strong) NSString* testID;
  18. @property (nonatomic, strong) RNNTitleOptions* title;
  19. @property (nonatomic, strong) RNNBackgrounOptions* background;
  20. @property (nonatomic, strong) NSNumber* backButtonImage;
  21. @property (nonatomic, strong) NSNumber* backButtonHidden;
  22. @property (nonatomic, strong) NSString* backButtonTitle;
  23. @property (nonatomic, strong) NSNumber* hideBackButtonTitle;
  24. @property (nonatomic, strong) NSString* componentName;
  25. @end