react-native-navigation的迁移库

123456789101112131415161718
  1. package com.reactnativenavigation.layouts;
  2. import com.reactnativenavigation.core.objects._Screen;
  3. public interface Layout {
  4. boolean onBackPressed();
  5. void onDestroy();
  6. void removeAllReactViews();
  7. void push(_Screen screen);
  8. _Screen pop();
  9. int getScreenCount();
  10. }