I am using webview at React native with Expo.
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { WebView } from 'react-native';
export default function App() {
return <WebView source={{ uri: 'http://192.0.0.1:8080' }} />;
}
This is my webiew code.
But I want to fix the webview without resizing with finger. How can I set this option? thank you so much.