Files
react-native-webview/android/src/main/java/com/reactnativecommunity/webview/WebViewConfig.java
T

13 lines
343 B
Java
Raw Normal View History

package com.reactnativecommunity.webview;
2018-07-30 20:21:48 -07:00
import android.webkit.WebView;
/**
* Implement this interface in order to config your {@link WebView}. An instance of that
* implementation will have to be given as a constructor argument to {@link RNCWebViewManager}.
2018-07-30 20:21:48 -07:00
*/
public interface WebViewConfig {
void configWebView(WebView webView);
}