Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
WIP: Optimize amount input
Browse files Browse the repository at this point in the history
  • Loading branch information
ILIYANGERMANOV committed May 23, 2022
1 parent ed2acca commit 0514c0e
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import com.ivy.design.l0_system.UI
import com.ivy.design.l0_system.style
import com.ivy.wallet.R
import com.ivy.wallet.ui.IvyWalletPreview
import com.ivy.wallet.ui.theme.Black
import com.ivy.wallet.ui.theme.Red
import com.ivy.wallet.ui.theme.components.IvyIcon
import com.ivy.wallet.ui.theme.modal.IvyModal
Expand Down Expand Up @@ -460,11 +459,11 @@ private fun circleButtonModifier(
): Modifier {
return Modifier
.size(size)
.drawColoredShadow(
color = Black,
alpha = if (UI.colors.isLight) 0.05f else 0.5f,
borderRadius = 32.dp
)
// .drawColoredShadow(
// color = Black,
// alpha = if (UI.colors.isLight) 0.05f else 0.5f,
// borderRadius = 32.dp
// )
.clip(CircleShape)
.clickable(
onClick = onClick
Expand Down

0 comments on commit 0514c0e

Please sign in to comment.