react-native-navigation的迁移库

RNNBottomTabsOptions.h 717B

123456789101112131415161718192021
  1. #import "RNNOptions.h"
  2. @interface RNNBottomTabsOptions : RNNOptions
  3. @property (nonatomic, strong) Bool* visible;
  4. @property (nonatomic, strong) IntNumber* currentTabIndex;
  5. @property (nonatomic, strong) Bool* drawBehind;
  6. @property (nonatomic, strong) Color* tabColor;
  7. @property (nonatomic, strong) Color* selectedTabColor;
  8. @property (nonatomic, strong) Bool* translucent;
  9. @property (nonatomic, strong) Bool* hideShadow;
  10. @property (nonatomic, strong) Color* backgroundColor;
  11. @property (nonatomic, strong) Number* fontSize;
  12. @property (nonatomic, strong) Text* testID;
  13. @property (nonatomic, strong) Text* currentTabId;
  14. @property (nonatomic, strong) Text* barStyle;
  15. @property (nonatomic, strong) Text* fontFamily;
  16. @end