change selection screen title font size

This commit is contained in:
white
2025-10-18 12:55:56 +03:00
parent cf38ef7ac2
commit 7a17c93622
2 changed files with 4 additions and 6 deletions

View File

@@ -283,11 +283,9 @@ fun StrategySelectionItem(strategy : StrategyCheckResult, prefs : SharedPreferen
.padding(horizontal = 8.dp) .padding(horizontal = 8.dp)
.fillMaxWidth() .fillMaxWidth()
) { ) {
if (strategy.domains.isNotEmpty()){ Text(
Text( text = stringResource(R.string.selection_available_domains)
text = stringResource(R.string.selection_available_domains) )
)
}
LazyColumn(modifier = Modifier.heightIn(max = 300.dp)) { LazyColumn(modifier = Modifier.heightIn(max = 300.dp)) {
items(strategy.domains) { item -> items(strategy.domains) { item ->
Card( Card(

View File

@@ -82,7 +82,7 @@ fun StrategySelectionScreen(navController: NavController, vpnLauncher: ActivityR
title = { title = {
Text( Text(
text = stringResource(R.string.title_selection), text = stringResource(R.string.title_selection),
fontSize = 40.sp, fontSize = 30.sp,
fontFamily = FontFamily(Font(R.font.unbounded, FontWeight.Normal)) fontFamily = FontFamily(Font(R.font.unbounded, FontWeight.Normal))
) )
}, },