Fix rendering of wrong composable in preview
This commit is contained in:
parent
dd1e10279b
commit
93567aed02
1 changed files with 3 additions and 3 deletions
|
|
@ -38,8 +38,8 @@ fun CenterAlignedTopAppBar(
|
||||||
navigationIcon: @Composable () -> Unit = {},
|
navigationIcon: @Composable () -> Unit = {},
|
||||||
actions: @Composable RowScope.() -> Unit = {},
|
actions: @Composable RowScope.() -> Unit = {},
|
||||||
windowInsets: WindowInsets = TopAppBarDefaults.windowInsets,
|
windowInsets: WindowInsets = TopAppBarDefaults.windowInsets,
|
||||||
colors: TopAppBarColors = TopAppBarDefaults.smallTopAppBarColors(),
|
colors: TopAppBarColors = TopAppBarDefaults.centerAlignedTopAppBarColors(),
|
||||||
scrollBehavior: TopAppBarScrollBehavior? = null
|
scrollBehavior: TopAppBarScrollBehavior? = null,
|
||||||
) {
|
) {
|
||||||
androidx.compose.material3.CenterAlignedTopAppBar(
|
androidx.compose.material3.CenterAlignedTopAppBar(
|
||||||
title = title,
|
title = title,
|
||||||
|
|
@ -64,5 +64,5 @@ internal fun CenterAlignedTopAppBarDarkPreview() =
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
private fun ContentToPreview() {
|
private fun ContentToPreview() {
|
||||||
TopAppBar(title = { Text(text = "Title") })
|
CenterAlignedTopAppBar(title = { Text(text = "Title") })
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue