react-native-navigation的迁移库

ElementFrameTransition.h 388B

123456789101112
  1. #import <Foundation/Foundation.h>
  2. #import "ElementBaseTransition.h"
  3. @interface ElementFrameTransition : ElementBaseTransition
  4. - (instancetype)initWithView:(UIView *)view from:(CGRect)from to:(CGRect)to startDelay:(NSTimeInterval)startDelay duration:(NSTimeInterval)duration interpolation:(Text *)interpolation;
  5. @property (nonatomic) CGRect from;
  6. @property (nonatomic) CGRect to;
  7. @end