react-native-navigation的迁移库

Component.java 226B

123456789101112
  1. package com.reactnativenavigation.views;
  2. import com.reactnativenavigation.views.topbar.TopBar;
  3. public interface Component {
  4. void drawBehindTopBar();
  5. void drawBelowTopBar(TopBar topBar);
  6. boolean isRendered();
  7. }