react-native-navigation的迁移库

RNNBottomTabsOptions.h 944B

123456789101112131415161718192021222324252627
  1. #import "RNNOptions.h"
  2. #import "BottomTabsAttachMode.h"
  3. @interface RNNBottomTabsOptions : RNNOptions
  4. @property (nonatomic, strong) Bool* visible;
  5. @property (nonatomic, strong) IntNumber* currentTabIndex;
  6. @property (nonatomic, strong) Bool* drawBehind;
  7. @property (nonatomic, strong) Bool* animate;
  8. @property (nonatomic, strong) Color* tabColor;
  9. @property (nonatomic, strong) Color* selectedTabColor;
  10. @property (nonatomic, strong) Bool* translucent;
  11. @property (nonatomic, strong) Bool* hideShadow;
  12. @property (nonatomic, strong) Color* backgroundColor;
  13. @property (nonatomic, strong) Number* fontSize;
  14. @property (nonatomic, strong) Text* testID;
  15. @property (nonatomic, strong) Text* currentTabId;
  16. @property (nonatomic, strong) Text* barStyle;
  17. @property (nonatomic, strong) Text* fontFamily;
  18. @property (nonatomic, strong) Text* titleDisplayMode;
  19. @property (nonatomic, strong) BottomTabsAttachMode* tabsAttachMode;
  20. - (BOOL)shouldDrawBehind;
  21. @end