react-native-navigation的迁移库

RNNPushAnimation.h 329B

123456789101112
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. #import "RNNScreenTransition.h"
  4. @interface RNNPushAnimation : NSObject <UIViewControllerAnimatedTransitioning>
  5. @property (nonatomic, strong) RNNScreenTransition* screenTransition;
  6. - (instancetype)initWithScreenTransition:(RNNScreenTransition *)screenTransition;
  7. @end