react-native-navigation的迁移库

RNNLayoutInfo.h 307B

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