Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 442 Bytes

File metadata and controls

18 lines (14 loc) · 442 Bytes

react-native-android-webview-video-fullscreen

Add in your MainActivity.java

import io.getknow.inteachwebview.InTeachWebviewPackage;


public List<ReactPackage> createAdditionalReactPackages() {
  ....
   new InTeachWebviewPackage(),
}

Where you want to use the project :

import InTeachWebview from 'react-native-android-webview-video-fullscreen';
const WVComponent = Platform.OS === 'android' ? InTeachWebview : WebView;