File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
app/src/main/java/to/bitkit/ui/components Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import androidx.compose.animation.core.infiniteRepeatable
77import androidx.compose.animation.core.rememberInfiniteTransition
88import androidx.compose.animation.core.tween
99import androidx.compose.foundation.Image
10+ import androidx.compose.foundation.border
1011import androidx.compose.foundation.layout.Arrangement
1112import androidx.compose.foundation.layout.Box
1213import androidx.compose.foundation.layout.Column
@@ -86,7 +87,9 @@ fun SuggestionCard(
8687 if (isDismissible) {
8788 Modifier .gradientLinearBackground(gradientColor)
8889 } else {
89- Modifier .gradientRadialBackground(gradientColor, glowAlpha)
90+ Modifier
91+ .gradientRadialBackground(gradientColor, glowAlpha)
92+ .border(width = 1 .dp, color = gradientColor, shape = ShapeDefaults .Large )
9093 }
9194 )
9295 .clickableAlpha { onClick() }
You can’t perform that action at this time.
0 commit comments