Skip to content

Instantly share code, notes, and snippets.

View aabadaa's full-sized avatar

Abdulaleem Alsayed aabadaa

  • Syria
View GitHub Profile
@aabadaa
aabadaa / AnimatedBorderCard.kt
Last active April 6, 2024 10:22 — forked from stevdza-san/AnimatedBorderCard.kt
Card with Animated Border built with Jetpack Compose.
// replace outer surface with clipToBounds modifier
@Composable
fun AnimatedBorderCard(
modifier: Modifier = Modifier,
shape: Shape = RoundedCornerShape(size = 0.dp),
borderWidth: Dp = 2.dp,
gradient: Brush = Brush.sweepGradient(listOf(Color.Gray, Color.White)),
animationDuration: Int = 10000,
onCardClick: () -> Unit = {},