react-native-navigation的迁移库

RNNLayoutInfo.h 337B

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