react-native-navigation的迁移库

RNNTabBarOptions.h 506B

123456789101112131415161718
  1. #import <Foundation/Foundation.h>
  2. extern const NSInteger BLUR_TOPBAR_TAG;
  3. @interface RNNTabBarOptions : NSObject
  4. @property (nonatomic, strong) NSNumber* hidden;
  5. @property (nonatomic, strong) NSNumber* animateHide;
  6. @property (nonatomic, strong) NSNumber* currentTabIndex;
  7. @property (nonatomic, strong) NSString* testID;
  8. @property (nonatomic, strong) NSNumber* drawUnder;
  9. -(instancetype)init;
  10. -(instancetype)initWithDict:(NSDictionary *)topBarOptions;
  11. -(void)mergeWith:(NSDictionary*)otherOptions;
  12. @end