Storage
Last updated
import { WebView } from 'react-native-webview';
<WebView
source={{ uri: 'https://{clientId}.loveslisa.tech/s/{showId}' }}
javaScriptEnabled={true}
domStorageEnabled={true}
/>To increase LiSA Player performance, caching must be enabled.
<WebView
cacheEnabled={true}
cacheMode={'LOAD_DEFAULT'}
/>Last updated