react-native-navigation的迁移库

RCCTheSideBarManagerViewController.h 460B

1234567891011121314151617181920212223
  1. //
  2. // DarwerTheSideBarManagerViewController.h
  3. // ReactNativeControllers
  4. //
  5. // Created by Ran Greenberg on 22/03/2016.
  6. // Copyright © 2016 artal. All rights reserved.
  7. //
  8. #import "TheSidebarController.h"
  9. #import "RCCDrawerProtocol.h"
  10. typedef NS_ENUM(NSInteger,TheSideBarSide){
  11. TheSideBarSideNone = 0,
  12. TheSideBarSideLeft,
  13. TheSideBarSideRight,
  14. };
  15. @interface RCCTheSideBarManagerViewController : TheSidebarController <RCCDrawerDelegate>
  16. @end