Created
February 11, 2019 21:15
-
-
Save nazrdogan/fbf633080f14383b8a2e0ddf4a6eed2a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.reactnavigation.example; | |
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 { | |
@Override | |
protected String getMainComponentName() { | |
return "Example"; | |
} | |
+ @Override | |
+ protected ReactActivityDelegate createReactActivityDelegate() { | |
+ return new ReactActivityDelegate(this, getMainComponentName()) { | |
+ @Override | |
+ protected ReactRootView createRootView() { | |
+ return new RNGestureHandlerEnabledRootView(MainActivity.this); | |
+ } | |
+ }; | |
+ } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment