Changed settings button design

This commit is contained in:
Abdelilah El Aissaoui 2022-10-27 13:02:11 +02:00
parent 1847eb42e9
commit 4196319203

View File

@ -321,13 +321,10 @@ fun SettingButton(
Spacer(modifier = Modifier.weight(1f)) Spacer(modifier = Modifier.weight(1f))
OutlinedButton(onClick = onClick) { PrimaryButton(
Text( text = buttonText,
text = buttonText, onClick = onClick,
color = MaterialTheme.colors.onBackground, )
style = MaterialTheme.typography.body1,
)
}
} }
} }