react-native-navigation的迁移库

RNNNavigationOptions.h 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #import <Foundation/Foundation.h>
  2. #import "RNNTopBarOptions.h"
  3. #import "RNNBottomTabsOptions.h"
  4. #import "RNNBottomTabOptions.h"
  5. #import "RNNSideMenuOptions.h"
  6. #import "RNNTopTabOptions.h"
  7. #import "RNNTopTabsOptions.h"
  8. #import "RNNOverlayOptions.h"
  9. #import "RNNAnimationOptions.h"
  10. #import "RNNTransitionsOptions.h"
  11. extern const NSInteger BLUR_STATUS_TAG;
  12. extern const NSInteger BLUR_TOPBAR_TAG;
  13. extern const NSInteger TOP_BAR_TRANSPARENT_TAG;
  14. @interface RNNNavigationOptions : RNNOptions
  15. @property (nonatomic, strong) RNNTopBarOptions* topBar;
  16. @property (nonatomic, strong) RNNBottomTabsOptions* bottomTabs;
  17. @property (nonatomic, strong) RNNBottomTabOptions* bottomTab;
  18. @property (nonatomic, strong) RNNTopTabsOptions* topTabs;
  19. @property (nonatomic, strong) RNNTopTabOptions* topTab;
  20. @property (nonatomic, strong) RNNSideMenuOptions* sideMenu;
  21. @property (nonatomic, strong) RNNOverlayOptions* overlay;
  22. @property (nonatomic, strong) RNNAnimationOptions* customTransition;
  23. @property (nonatomic, strong) RNNTransitionsOptions* animations;
  24. @property (nonatomic, strong) NSNumber* animated;
  25. @property (nonatomic, strong) NSNumber* statusBarHidden;
  26. @property (nonatomic, strong) NSNumber* screenBackgroundColor;
  27. @property (nonatomic, strong) NSMutableDictionary* originalTopBarImages;
  28. @property (nonatomic, strong) NSString* backButtonTransition;
  29. @property (nonatomic, strong) id orientation;
  30. @property (nonatomic, strong) NSNumber* statusBarBlur;
  31. @property (nonatomic, strong) NSNumber* statusBarHideWithTopBar;
  32. @property (nonatomic, strong) NSString* statusBarStyle;
  33. @property (nonatomic, strong) NSNumber* popGesture;
  34. @property (nonatomic, strong) UIImage* backgroundImage;
  35. @property (nonatomic, strong) UIImage* rootBackgroundImage;
  36. - (UIInterfaceOrientationMask)supportedOrientations;
  37. @end