Bump dependencies

(cherry picked from commit 9432d2d06a817cc22fe147b0d3f33f156de09840)
This commit is contained in:
arkon
2023-02-22 23:09:16 -05:00
committed by Jobobby04
parent 87107fcc94
commit 654e894aee
5 changed files with 10 additions and 10 deletions
@@ -49,7 +49,7 @@ fun WebViewScreenContent(
Box {
AppBar(
title = state.pageTitle ?: initialTitle,
subtitle = state.content.getCurrentUrl(),
subtitle = state.lastLoadedUrl,
navigateUp = onNavigateUp,
navigationIcon = Icons.Outlined.Close,
actions = {
@@ -81,15 +81,15 @@ fun WebViewScreenContent(
),
AppBar.OverflowAction(
title = stringResource(R.string.action_share),
onClick = { onShare(state.content.getCurrentUrl()!!) },
onClick = { onShare(state.lastLoadedUrl!!) },
),
AppBar.OverflowAction(
title = stringResource(R.string.action_open_in_browser),
onClick = { onOpenInBrowser(state.content.getCurrentUrl()!!) },
onClick = { onOpenInBrowser(state.lastLoadedUrl!!) },
),
AppBar.OverflowAction(
title = stringResource(R.string.pref_clear_cookies),
onClick = { onClearCookies(state.content.getCurrentUrl()!!) },
onClick = { onClearCookies(state.lastLoadedUrl!!) },
),
),
)