react-native-doris-webview
v1.0.24
Published
A webview implementation for Doris MIX
Downloads
10
Maintainers
Readme
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>
);
};