Fixed typo and centering text
This commit is contained in:
parent
33b93c170f
commit
b86c59ef24
|
@ -82,9 +82,9 @@ fun ProtectAppSettingsDialog(appSettings: AppSettings, onClosed: () -> Unit) {
|
||||||
Spacer(Modifier.weight(1f))
|
Spacer(Modifier.weight(1f))
|
||||||
|
|
||||||
if (selectedAuthenticationMethod == AppAuthenticationMethod.None) {
|
if (selectedAuthenticationMethod == AppAuthenticationMethod.None) {
|
||||||
Row(Modifier.fillMaxWidth()) {
|
Row(Modifier.fillMaxWidth(), horizontalArrangement = Arrangement.Center) {
|
||||||
if (currentAuthenticationMethod == AppAuthenticationMethod.None) {
|
if (currentAuthenticationMethod == AppAuthenticationMethod.None) {
|
||||||
Text("Appzugangsschutz ist bereits ungeschützt", fontSize = 18.sp, textAlign = TextAlign.Center)
|
Text("Appzugang ist bereits ungeschützt", fontSize = 18.sp, textAlign = TextAlign.Center)
|
||||||
} else {
|
} else {
|
||||||
Text("Möchten Sie den Appzugangsschutz wirklich entfernen?", fontSize = 18.sp, textAlign = TextAlign.Center)
|
Text("Möchten Sie den Appzugangsschutz wirklich entfernen?", fontSize = 18.sp, textAlign = TextAlign.Center)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue