react-native-navigation的迁移库

RNNBottomTabsOptions.h 762B

12345678910111213141516171819202122
  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) Bool* animate;
  7. @property (nonatomic, strong) Color* tabColor;
  8. @property (nonatomic, strong) Color* selectedTabColor;
  9. @property (nonatomic, strong) Bool* translucent;
  10. @property (nonatomic, strong) Bool* hideShadow;
  11. @property (nonatomic, strong) Color* backgroundColor;
  12. @property (nonatomic, strong) Number* fontSize;
  13. @property (nonatomic, strong) Text* testID;
  14. @property (nonatomic, strong) Text* currentTabId;
  15. @property (nonatomic, strong) Text* barStyle;
  16. @property (nonatomic, strong) Text* fontFamily;
  17. @end