android: adjust pre-first connect text style in m3e

This commit is contained in:
Kavish Devar
2026-08-27 15:50:48 +05:30
parent cf6d226fca
commit b4cacb89f1
@@ -833,14 +833,16 @@ fun AirPodsSettingsScreen(
} else {
Text(
text = stringResource(R.string.airpods_not_connected),
style = MaterialTheme.typography.labelMediumEmphasized,
style = MaterialTheme.typography.headlineMedium,
color = MaterialTheme.colorScheme.primary
)
if (sharedPreferences.getBoolean("bypass_device_check.v2", false)) {
Spacer(modifier = Modifier.height(16.dp))
Text(
text = stringResource(R.string.compatibility_check_bypassed),
style = MaterialTheme.typography.labelSmallEmphasized,
color = MaterialTheme.colorScheme.onSurface
style = MaterialTheme.typography.bodyMedium,
color = MaterialTheme.colorScheme.onSurface,
textAlign = TextAlign.Center
)
}
}