diff --git a/common/src/commonMain/kotlin/com/artemchep/keyguard/feature/twopane/TwoPaneLayout.kt b/common/src/commonMain/kotlin/com/artemchep/keyguard/feature/twopane/TwoPaneLayout.kt index 20246e5..0fe7db9 100644 --- a/common/src/commonMain/kotlin/com/artemchep/keyguard/feature/twopane/TwoPaneLayout.kt +++ b/common/src/commonMain/kotlin/com/artemchep/keyguard/feature/twopane/TwoPaneLayout.kt @@ -65,6 +65,7 @@ import com.artemchep.keyguard.ui.surface.color import com.artemchep.keyguard.ui.surface.splitHigh import com.artemchep.keyguard.ui.surface.splitLow import com.artemchep.keyguard.ui.surface.surfaceElevationColor +import com.artemchep.keyguard.ui.text.AutoSizeText import com.artemchep.keyguard.ui.util.VerticalDivider import org.kodein.di.compose.rememberInstance @@ -232,12 +233,14 @@ fun TwoPaneScaffoldScope.TwoPaneLayout( contentDescription = null, tint = MaterialTheme.colorScheme.onBackground, ) - Text( + val textStyle = MaterialTheme.typography.displayLarge + AutoSizeText( text = remember { keyguardSpan() }, - textAlign = TextAlign.Center, - style = MaterialTheme.typography.displayLarge, + minTextSize = MaterialTheme.typography.displayMedium.fontSize, + maxTextSize = textStyle.fontSize, + style = textStyle, color = MaterialTheme.colorScheme.onBackground, maxLines = 1, )