react-native-navigation的迁移库

RNNSideMenuRightVC.h 336B

123456789101112131415161718
  1. //
  2. // RNNSideMenuRightVC.h
  3. // ReactNativeNavigation
  4. //
  5. // Created by Ran Greenberg on 09/02/2017.
  6. // Copyright © 2017 Wix. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface RNNSideMenuRightVC : UIViewController
  10. @property (readonly) UIViewController *child;
  11. -(instancetype)initWithChild:(UIViewController*)child;
  12. @end