@@ -4,16 +4,13 @@ import android.annotation.SuppressLint
44import android.content.pm.PackageInfo
55import androidx.activity.compose.rememberLauncherForActivityResult
66import androidx.activity.result.contract.ActivityResultContracts.CreateDocument
7- import androidx.compose.animation.AnimatedVisibility
7+ import androidx.compose.animation.*
88import androidx.compose.animation.core.tween
9- import androidx.compose.animation.expandVertically
10- import androidx.compose.animation.fadeIn
11- import androidx.compose.animation.fadeOut
12- import androidx.compose.animation.shrinkVertically
139import androidx.compose.foundation.background
1410import androidx.compose.foundation.layout.*
1511import androidx.compose.foundation.shape.RoundedCornerShape
1612import androidx.compose.material.icons.Icons
13+ import androidx.compose.material.icons.automirrored.outlined.Launch
1714import androidx.compose.material.icons.automirrored.outlined.List
1815import androidx.compose.material.icons.outlined.*
1916import androidx.compose.material3.CircularProgressIndicator
@@ -388,7 +385,7 @@ private fun PatchUpdateAvailableBanner(
388385
389386 // Patch button
390387 ActionButton (
391- text = stringResource(R .string.patch ),
388+ text = stringResource(R .string.repatch ),
392389 icon = Icons .Outlined .Refresh ,
393390 onClick = onPatchClick,
394391 isPrimary = true ,
@@ -563,7 +560,7 @@ private fun ActionsSection(
563560 primaryActions.add(
564561 ActionItem (
565562 text = stringResource(R .string.patch),
566- icon = Icons .Outlined .AutoAwesome ,
563+ icon = Icons .Outlined .AutoFixHigh ,
567564 onClick = onPatchClick,
568565 enabled = availablePatches > 0
569566 )
@@ -574,7 +571,7 @@ private fun ActionsSection(
574571 primaryActions.add(
575572 ActionItem (
576573 text = stringResource(R .string.repatch),
577- icon = Icons .Outlined .Build ,
574+ icon = Icons .Outlined .Refresh ,
578575 onClick = onRepatchClick
579576 )
580577 )
@@ -585,7 +582,7 @@ private fun ActionsSection(
585582 secondaryActions.add(
586583 ActionItem (
587584 text = stringResource(R .string.open),
588- icon = Icons .Outlined .PlayArrow ,
585+ icon = Icons .AutoMirrored . Outlined .Launch ,
589586 onClick = { viewModel.launch() }
590587 )
591588 )
@@ -611,7 +608,7 @@ private fun ActionsSection(
611608 secondaryActions.add(
612609 ActionItem (
613610 text = installText,
614- icon = Icons .Outlined .Download ,
611+ icon = Icons .Outlined .InstallMobile ,
615612 onClick = { if (viewModel.mountWarning != null ) onMountWarning() else viewModel.installSavedApp() },
616613 isLoading = isInstalling
617614 )
@@ -622,7 +619,7 @@ private fun ActionsSection(
622619 secondaryActions.add(
623620 ActionItem (
624621 text = if (viewModel.isMounted) stringResource(R .string.remount) else stringResource(R .string.mount),
625- icon = if (viewModel.isMounted) Icons .Outlined .Refresh else Icons .Outlined .Check ,
622+ icon = if (viewModel.isMounted) Icons .Outlined .Refresh else Icons .Outlined .Link ,
626623 onClick = { if (viewModel.isMounted) viewModel.remountSavedInstallation() else viewModel.mountOrUnmount() },
627624 isLoading = isMountLoading
628625 )
0 commit comments