修复设置项重叠问题

This commit is contained in:
HapeLee
2026-05-11 03:28:09 +08:00
parent 34035272c1
commit 51209664b1
@@ -411,6 +411,9 @@ fun ThemeConfigScreen(
onCheckedChange = { ThemeConfig.useFloatingBottomBar = it }
)
AnimatedVisibility(visible = ThemeConfig.useFloatingBottomBar) {
Column(
verticalArrangement = Arrangement.spacedBy(8.dp)
) {
SwitchSettingItem(
title = stringResource(R.string.floating_bottom_bar_liquid_glass),
description = stringResource(R.string.floating_bottom_bar_liquid_glass_summary),
@@ -426,6 +429,8 @@ fun ThemeConfigScreen(
onValueChange = { ThemeConfig.bottomBarLensRadius = it }
)
}
}
DropdownListSettingItem(
title = stringResource(R.string.tabletInterface),
selectedValue = ThemeConfig.tabletInterface,