react-native-navigation的迁移库

IReactView.java 463B

12345678910111213141516171819202122
  1. package com.reactnativenavigation.viewcontrollers;
  2. import android.view.MotionEvent;
  3. import android.view.View;
  4. import com.reactnativenavigation.interfaces.ScrollEventListener;
  5. public interface IReactView extends Destroyable {
  6. boolean isReady();
  7. View asView();
  8. void sendOnNavigationButtonPressed(String buttonId);
  9. ScrollEventListener getScrollEventListener();
  10. void dispatchTouchEventToJs(MotionEvent event);
  11. boolean isRendered();
  12. }