react-native-navigation的迁移库

RNNNavigationOptions.h 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 "RNNTransitionOptions.h"
  10. extern const NSInteger BLUR_STATUS_TAG;
  11. extern const NSInteger BLUR_TOPBAR_TAG;
  12. extern const NSInteger TOP_BAR_TRANSPARENT_TAG;
  13. @interface RNNNavigationOptions : RNNOptions
  14. @property (nonatomic, strong) RNNTopBarOptions* topBar;
  15. @property (nonatomic, strong) RNNBottomTabsOptions* bottomTabs;
  16. @property (nonatomic, strong) RNNBottomTabOptions* bottomTab;
  17. @property (nonatomic, strong) RNNTopTabsOptions* topTabs;
  18. @property (nonatomic, strong) RNNTopTabOptions* topTab;
  19. @property (nonatomic, strong) RNNSideMenuOptions* sideMenu;
  20. @property (nonatomic, strong) RNNOverlayOptions* overlay;
  21. @property (nonatomic, strong) RNNTransitionOptions* customTransition;
  22. @property (nonatomic, strong) RNNNavigationOptions* defaultOptions;
  23. @property (nonatomic, strong) NSNumber* animated;
  24. @property (nonatomic, strong) NSNumber* statusBarHidden;
  25. @property (nonatomic, strong) NSNumber* screenBackgroundColor;
  26. @property (nonatomic, strong) NSMutableDictionary* originalTopBarImages;
  27. @property (nonatomic, strong) NSString* backButtonTransition;
  28. @property (nonatomic, strong) id orientation;
  29. @property (nonatomic, strong) NSNumber* statusBarBlur;
  30. @property (nonatomic, strong) NSNumber* statusBarHideWithTopBar;
  31. @property (nonatomic, strong) NSNumber* popGesture;
  32. @property (nonatomic, strong) UIImage* backgroundImage;
  33. @property (nonatomic, strong) UIImage* rootBackgroundImage;
  34. - (UIInterfaceOrientationMask)supportedOrientations;
  35. @end