mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-04-30 21:32:14 +08:00
30 lines
904 B
Java
30 lines
904 B
Java
package com.reactnavigationexample;
|
|
|
|
import com.facebook.react.ReactActivity;
|
|
import com.facebook.react.ReactActivityDelegate;
|
|
import com.facebook.react.ReactRootView;
|
|
import com.swmansion.gesturehandler.react.RNGestureHandlerEnabledRootView;
|
|
|
|
public class MainActivity extends ReactActivity {
|
|
|
|
/**
|
|
* Returns the name of the main component registered from JavaScript.
|
|
* This is used to schedule
|
|
* rendering of the component.
|
|
*/
|
|
@Override
|
|
protected String getMainComponentName() {
|
|
return "ReactNavigationExample";
|
|
}
|
|
|
|
@Override
|
|
protected ReactActivityDelegate createReactActivityDelegate() {
|
|
return new ReactActivityDelegate(this, getMainComponentName()) {
|
|
@Override
|
|
protected ReactRootView createRootView() {
|
|
return new RNGestureHandlerEnabledRootView(MainActivity.this);
|
|
}
|
|
};
|
|
}
|
|
}
|