// // UIViewFactory.h // foundation_fluttify // // Created by Yohom Bao on 2020/4/17. // #import #import NS_ASSUME_NONNULL_BEGIN @interface UIViewFactory : NSObject - (instancetype)initWithRegistrar:(NSObject *)registrar; @property(nonatomic) NSObject* registrar; @end @interface UIViewPlatformView : NSObject - (instancetype)initWithViewId:(int64_t)viewId frame:(CGRect)frame registrar:(NSObject *)registrar; @property(nonatomic) NSObject* registrar; @end NS_ASSUME_NONNULL_END