react-native-navigation的迁移库

RNNBottomTabOptions.h 598B

1234567891011121314151617
  1. #import "RNNOptions.h"
  2. @interface RNNBottomTabOptions : RNNOptions
  3. @property (nonatomic) NSUInteger tag;
  4. @property (nonatomic, strong) NSString* title;
  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* disableIconTint;
  11. @property (nonatomic, strong) NSDictionary* disableSelectedIconTint;
  12. @property (nonatomic, strong) NSDictionary* iconInsets;
  13. @end