| Copyright | (C) 2016-2026 David M. Johnson |
|---|---|
| License | BSD3-style (see the file LICENSE) |
| Maintainer | David M. Johnson <code@dmj.io> |
| Stability | experimental |
| Portability | non-portable |
| Safe Haskell | None |
| Language | Haskell2010 |
Miso.Native.X.Element.Webview.Property
Contents
Description
Synopsis
- bounces_ :: Bool -> Attribute model action
- cookies_ :: Value -> Attribute model action
- enableDebug_ :: Bool -> Attribute model action
- html_ :: MisoString -> Attribute model action
- initjs_ :: MisoString -> Attribute model action
- params_ :: Value -> Attribute model action
- scrollBarEnable_ :: Bool -> Attribute model action
- src_ :: MisoString -> Attribute model action
- useOsr_ :: Bool -> Attribute model action
- webviewType_ :: MisoString -> Attribute model action
Property
bounces_ :: Bool -> Attribute model action Source #
https://lynxjs.org/api/elements/built-in/webview.html#bounces
- iOS* only. Enables the bounce effect.
Default Value: False
cookies_ :: Value -> Attribute model action Source #
https://lynxjs.org/api/elements/built-in/webview.html#cookies
- Desktop, Lynx 3.5+*. Preset cookies.
enableDebug_ :: Bool -> Attribute model action Source #
https://lynxjs.org/api/elements/built-in/webview.html#enable-debug
Enables WebView debugging on Android so it can be debugged in Chrome DevTools.
Default Value: False
html_ :: MisoString -> Attribute model action Source #
https://lynxjs.org/api/elements/built-in/webview.html#html
- Lynx 3.6+*. A string of HTML content to load. Automatically refreshes when
the HTML changes. Lower priority than
src_.
initjs_ :: MisoString -> Attribute model action Source #
https://lynxjs.org/api/elements/built-in/webview.html#initjs
- Desktop, Lynx 3.5+*. Executes JavaScript when the document is ready.
params_ :: Value -> Attribute model action Source #
https://lynxjs.org/api/elements/built-in/webview.html#params
Params for the external webview implementation.
scrollBarEnable_ :: Bool -> Attribute model action Source #
https://lynxjs.org/api/elements/built-in/webview.html#scroll-bar-enable
- iOS* only. Enables the scrollbar.
Default Value: False
src_ :: MisoString -> Attribute model action Source #
https://lynxjs.org/api/elements/built-in/webview.html#src
The location of a resource on a remote server.
src_ "https://url.com"
useOsr_ :: Bool -> Attribute model action Source #
https://lynxjs.org/api/elements/built-in/webview.html#use-osr
- Desktop, Lynx 3.5+*. Whether to enable offscreen rendering mode.
Default Value: False
webviewType_ :: MisoString -> Attribute model action Source #
https://lynxjs.org/api/elements/built-in/webview.html#webview-type
Specifies the type of webview; it can be an implementation of a webview
injected from LynxService.
Default Value: "default"