flutter-webview-windows icon indicating copy to clipboard operation
flutter-webview-windows copied to clipboard

Need suggestion to Hide Scrollbar on Webview

Open fionicholas opened this issue 2 years ago • 3 comments

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 ?

Screenshot 2023-12-11 092329

fionicholas avatar Dec 11 '23 02:12 fionicholas

Were you able to find any method?

joeljoy avatar Dec 15 '23 10:12 joeljoy

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>

dhola-hardik avatar Dec 27 '23 08:12 dhola-hardik