Skip to content

Commit

Permalink
Fix Restore button color in Premium page
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelekol committed Dec 25, 2024
1 parent 5c5d40f commit 5538bbb
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ import androidx.navigation.NavController
import io.horizontalsystems.bankwallet.R
import io.horizontalsystems.bankwallet.modules.evmfee.ButtonsGroupWithShade
import io.horizontalsystems.bankwallet.ui.compose.ComposeAppTheme
import io.horizontalsystems.bankwallet.ui.compose.Light
import io.horizontalsystems.bankwallet.ui.compose.Steel20
import io.horizontalsystems.bankwallet.ui.compose.components.ButtonPrimaryTransparent
import io.horizontalsystems.bankwallet.ui.compose.components.ButtonPrimaryYellow
Expand Down Expand Up @@ -163,7 +162,10 @@ fun SelectPremiumPlanScreen(
}

ButtonsGroupWithShade {
Column(Modifier.padding(horizontal = 24.dp)) {
Column(
modifier= Modifier.padding(horizontal = 24.dp),
horizontalAlignment = Alignment.CenterHorizontally
) {
ButtonPrimaryCustomColor(
modifier = Modifier.fillMaxWidth(),
title = stringResource(R.string.Premium_TryForFree),
Expand All @@ -176,12 +178,11 @@ fun SelectPremiumPlanScreen(
)
VSpacer(12.dp)
ColoredTextSecondaryButton(
modifier = Modifier.fillMaxWidth(),
title = stringResource(R.string.Premium_Restore),
onClick = {
//
},
color = Light
color = ComposeAppTheme.colors.leah
)
}
}
Expand Down

0 comments on commit 5538bbb

Please sign in to comment.