react-native-navigation的迁移库

RNNBottomTabOptions.h 789B

1234567891011121314151617181920212223
  1. #import "RNNOptions.h"
  2. @interface RNNBottomTabOptions : RNNOptions
  3. @property (nonatomic) NSUInteger tag;
  4. @property (nonatomic, strong) Text* text;
  5. @property (nonatomic, strong) Text* badge;
  6. @property (nonatomic, strong) Text* fontFamily;
  7. @property (nonatomic, strong) Text* testID;
  8. @property (nonatomic, strong) Color* badgeColor;
  9. @property (nonatomic, strong) Image* icon;
  10. @property (nonatomic, strong) Image* selectedIcon;
  11. @property (nonatomic, strong) Color* iconColor;
  12. @property (nonatomic, strong) Color* selectedIconColor;
  13. @property (nonatomic, strong) Color* selectedTextColor;
  14. @property (nonatomic, strong) Dictionary* iconInsets;
  15. @property (nonatomic, strong) Color* textColor;
  16. @property (nonatomic, strong) Number* fontSize;
  17. @property (nonatomic, strong) Bool* visible;
  18. @end