react-native-navigation的迁移库

RNNBottomTabOptions.h 806B

12345678910111213141516171819202122
  1. #import "RNNOptions.h"
  2. @interface RNNBottomTabOptions : RNNOptions
  3. @property (nonatomic) NSUInteger tag;
  4. @property (nonatomic, strong) NSString* text;
  5. @property (nonatomic, strong) NSString* badge;
  6. @property (nonatomic, strong) NSString* testID;
  7. @property (nonatomic, strong) NSNumber* visible;
  8. @property (nonatomic, strong) NSDictionary* icon;
  9. @property (nonatomic, strong) NSDictionary* selectedIcon;
  10. @property (nonatomic, strong) NSDictionary* iconColor;
  11. @property (nonatomic, strong) NSDictionary* selectedIconColor;
  12. @property (nonatomic, strong) NSDictionary* textColor;
  13. @property (nonatomic, strong) NSDictionary* selectedTextColor;
  14. @property (nonatomic, strong) NSString* fontFamily;
  15. @property (nonatomic, strong) NSNumber* fontSize;
  16. @property (nonatomic, strong) NSDictionary* iconInsets;
  17. @end