mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 09:07:47 +01:00
feat(installer): adjust step icon size and alignment
This commit is contained in:
parent
e232044157
commit
6437f7bb65
1 changed files with 1 additions and 2 deletions
|
@ -218,7 +218,6 @@ fun InstallStep(step: Step) {
|
|||
.background(MaterialTheme.colorScheme.background.copy(0.6f))
|
||||
.fillMaxWidth()
|
||||
.padding(16.dp)
|
||||
.padding(start = 4.dp)
|
||||
) {
|
||||
step.subSteps.forEach { subStep ->
|
||||
var messageExpanded by rememberSaveable { mutableStateOf(true) }
|
||||
|
@ -229,7 +228,7 @@ fun InstallStep(step: Step) {
|
|||
verticalAlignment = Alignment.CenterVertically,
|
||||
horizontalArrangement = Arrangement.spacedBy(16.dp),
|
||||
) {
|
||||
StepIcon(subStep.state, downloadProgress?.value, size = 18.dp)
|
||||
StepIcon(subStep.state, downloadProgress?.value, size = 24.dp)
|
||||
|
||||
Text(
|
||||
text = subStep.name,
|
||||
|
|
Loading…
Reference in a new issue