@will-ks/rn
v0.17.0
Published
Provides the react-native side of the alloy framework.
Readme
alloy-rn
Provides the react-native side of the alloy framework.
Usage
alloy-rn exports a React native component, AlloyWebView.
This is an extension of, and shares the same interface as, react-native-webview.
Usage is simple, just import the component and use it.
import { AlloyWebView } from "alloy-rn";
export default function Index() {
return (
<AlloyWebView
source={{ uri: "http://localhost:5173" }} // point to your alloy-web app, running locally or in the cloud
/>
);
}