react-native-navigation的迁移库

RNNBottomTabOptions.h 985B

1234567891011121314151617181920212223242526272829
  1. #import "RNNOptions.h"
  2. @class DotIndicatorOptions;
  3. @interface RNNBottomTabOptions : RNNOptions
  4. @property(nonatomic) NSUInteger tag;
  5. @property(nonatomic, strong) Text *text;
  6. @property(nonatomic, strong) Text *badge;
  7. @property(nonatomic, strong) Color *badgeColor;
  8. @property(nonatomic, strong) DotIndicatorOptions *dotIndicator;
  9. @property(nonatomic, strong) Text *fontFamily;
  10. @property(nonatomic, strong) Text *fontWeight;
  11. @property(nonatomic, strong) Text *testID;
  12. @property(nonatomic, strong) Image *icon;
  13. @property(nonatomic, strong) Image *selectedIcon;
  14. @property(nonatomic, strong) Color *iconColor;
  15. @property(nonatomic, strong) Color *selectedIconColor;
  16. @property(nonatomic, strong) Color *selectedTextColor;
  17. @property(nonatomic, strong) Dictionary *iconInsets;
  18. @property(nonatomic, strong) Color *textColor;
  19. @property(nonatomic, strong) Number *fontSize;
  20. @property(nonatomic, strong) Bool *visible;
  21. @property(nonatomic, strong) Bool *selectTabOnPress;
  22. - (BOOL)hasValue;
  23. @end