react-native-navigation的迁移库

RNNBottomTabsOptions.h 758B

123456789101112131415161718192021
  1. #import "RNNOptions.h"
  2. @interface RNNBottomTabsOptions : RNNOptions
  3. @property (nonatomic, strong) NSNumber* visible;
  4. @property (nonatomic, strong) NSNumber* animate;
  5. @property (nonatomic, strong) NSNumber* currentTabIndex;
  6. @property (nonatomic, strong) NSString* testID;
  7. @property (nonatomic, strong) NSNumber* drawBehind;
  8. @property (nonatomic, strong) NSString* currentTabId;
  9. @property (nonatomic, strong) NSNumber* tabColor;
  10. @property (nonatomic, strong) NSNumber* selectedTabColor;
  11. @property (nonatomic, strong) NSNumber* translucent;
  12. @property (nonatomic, strong) NSNumber* hideShadow;
  13. @property (nonatomic, strong) NSNumber* backgroundColor;
  14. @property (nonatomic, strong) NSString* fontFamily;
  15. @property (nonatomic, strong) NSNumber* fontSize;
  16. @end