react-native-navigation的迁移库

RNNLayoutInfo.h 449B

123456789101112131415
  1. #import <Foundation/Foundation.h>
  2. #import "RNNOptionsManager.h"
  3. #import "RNNLayoutNode.h"
  4. @interface RNNLayoutInfo : NSObject
  5. - (instancetype)initWithNode:(RNNLayoutNode *)node optionsManager:(RNNOptionsManager *)optionsManager;
  6. @property (nonatomic, strong) NSString* componentId;
  7. @property (nonatomic, strong) NSString* name;
  8. @property (nonatomic, strong) NSDictionary* props;
  9. @property (nonatomic, strong) RNNNavigationOptions* options;
  10. @end