Package-level declarations

Types

Link copied to clipboard
@Stable
class BrowserViewState(browser: Browser, scope: CoroutineScope, window: Window) : AutoCloseable
@Stable
class BrowserViewState(browser: Browser, scope: CoroutineScope, window: Window) : AutoCloseable

State of BrowserView.

Functions

Link copied to clipboard
@Composable
fun BrowserView(state: BrowserViewState, modifier: Modifier = Modifier)
@Composable
fun BrowserView(state: BrowserViewState, modifier: Modifier = Modifier)

Displays the browser content from the provided state.

Link copied to clipboard
@Composable
fun WindowScope.BrowserView(browser: Browser, modifier: Modifier = Modifier, dragAndDropOptions: DragAndDropOptions = DragAndDropOptions())
@Composable
fun WindowScope.BrowserView(browser: Browser, modifier: Modifier = Modifier, dragAndDropOptions: DragAndDropOptions = DragAndDropOptions())

Displays the content of the given browser.

Link copied to clipboard
@Composable
fun WindowScope.rememberBrowserViewState(browser: Browser, scope: CoroutineScope = rememberCoroutineScope(), dragAndDropOptions: DragAndDropOptions = DragAndDropOptions()): BrowserViewState
@Composable
fun WindowScope.rememberBrowserViewState(browser: Browser, scope: CoroutineScope = rememberCoroutineScope(), dragAndDropOptions: DragAndDropOptions = DragAndDropOptions()): BrowserViewState

Creates a BrowserViewState that is remembered across compositions.