flutter-webview-windows
flutter-webview-windows copied to clipboard
Need suggestion to Hide Scrollbar on Webview
Hi @jnschulze ,i have implement the webview windows, but i need to hide the scrollbar on Web view
Any suggestion from you guys, for hide the scrollbar ?
Were you able to find any method?
Try this
<!DOCTYPE html>
<html>
<head>
<title>Camera Access Demo</title>
<style>
body {
margin: 0;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#camera {
width: 100%;
height: 100%;
}
</style>
</head>