1.0.24 • Published 2 years ago
react-native-doris-webview v1.0.24
React Native Doris WebView
Usage
Import the WebView component from react-native-doris-webview and use it like so:
import React from "react";
import { View } from "react-native";
import WebView from "react-native-doris-webview";
const MyComponent = () => {
  return (
    <View style={{ flex: 1 }}>
      <WebView url="https://reactnative.dev/" />
    </View>
  );
};