react-native-navigation的迁移库

TopBarBackgroundView.java 527B

12345678910111213141516
  1. package com.reactnativenavigation.views.topbar;
  2. import android.annotation.SuppressLint;
  3. import android.content.Context;
  4. import com.facebook.react.ReactInstanceManager;
  5. import com.reactnativenavigation.react.ReactView;
  6. @SuppressLint("ViewConstructor")
  7. public class TopBarBackgroundView extends ReactView {
  8. public TopBarBackgroundView(Context context, ReactInstanceManager reactInstanceManager, String componentId, String componentName) {
  9. super(context, reactInstanceManager, componentId, componentName);
  10. }
  11. }