react-native-navigation的迁移库

RNNBottomTabOptions.h 867B

1234567891011121314151617181920212223242526
  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 *testID;
  11. @property(nonatomic, strong) Image *icon;
  12. @property(nonatomic, strong) Image *selectedIcon;
  13. @property(nonatomic, strong) Color *iconColor;
  14. @property(nonatomic, strong) Color *selectedIconColor;
  15. @property(nonatomic, strong) Color *selectedTextColor;
  16. @property(nonatomic, strong) Dictionary *iconInsets;
  17. @property(nonatomic, strong) Color *textColor;
  18. @property(nonatomic, strong) Number *fontSize;
  19. @property(nonatomic, strong) Bool *visible;
  20. @end