mirror of
https://github.com/bitwarden/android.git
synced 2026-03-22 06:11:38 -05:00
Fix minor typo (#4734)
This commit is contained in:
@@ -99,7 +99,7 @@ fun BitwardenTopAppBar(
|
||||
.union(WindowInsets.displayCutout.only(WindowInsetsSides.Horizontal)),
|
||||
dividerStyle: TopAppBarDividerStyle = TopAppBarDividerStyle.ON_SCROLL,
|
||||
actions: @Composable RowScope.() -> Unit = {},
|
||||
minimunHeight: Dp = 48.dp,
|
||||
minimumHeight: Dp = 48.dp,
|
||||
) {
|
||||
var titleTextHasOverflow by remember {
|
||||
mutableStateOf(false)
|
||||
@@ -143,7 +143,7 @@ fun BitwardenTopAppBar(
|
||||
colors = bitwardenTopAppBarColors(),
|
||||
scrollBehavior = scrollBehavior,
|
||||
navigationIcon = navigationIconContent,
|
||||
collapsedHeight = minimunHeight,
|
||||
collapsedHeight = minimumHeight,
|
||||
expandedHeight = 96.dp,
|
||||
title = {
|
||||
// The height of the component is controlled and will only allow for 1 extra row,
|
||||
@@ -164,7 +164,7 @@ fun BitwardenTopAppBar(
|
||||
colors = bitwardenTopAppBarColors(),
|
||||
scrollBehavior = scrollBehavior,
|
||||
navigationIcon = navigationIconContent,
|
||||
expandedHeight = minimunHeight,
|
||||
expandedHeight = minimumHeight,
|
||||
title = {
|
||||
Text(
|
||||
text = title,
|
||||
|
||||
@@ -69,7 +69,7 @@ fun BitwardenModalBottomSheet(
|
||||
navigationIconContentDescription = stringResource(R.string.close),
|
||||
),
|
||||
scrollBehavior = scrollBehavior,
|
||||
minimunHeight = 64.dp,
|
||||
minimumHeight = 64.dp,
|
||||
)
|
||||
},
|
||||
modifier = Modifier
|
||||
|
||||
Reference in New Issue
Block a user