react-native-navigation的迁移库

RCCDrawerProtocol.h 611B

12345678910111213141516171819202122232425
  1. //
  2. // RCCDrawerProtocol.h
  3. // ReactNativeControllers
  4. //
  5. // Created by Ran Greenberg on 23/03/2016.
  6. // Copyright © 2016 artal. All rights reserved.
  7. //
  8. @class RCTBridge;
  9. @protocol RCCDrawerDelegate <NSObject>
  10. @property (nonatomic, strong) UIButton *overlayButton;
  11. @property (nonatomic, strong) NSDictionary *drawerStyle;
  12. @required
  13. - (instancetype)initWithProps:(NSDictionary *)props children:(NSArray *)children globalProps:(NSDictionary*)globalProps bridge:(RCTBridge *)bridge;
  14. - (void)performAction:(NSString*)performAction actionParams:(NSDictionary*)actionParams bridge:(RCTBridge *)bridge;
  15. @end