Skip to content

Commit

Permalink
#3 [feat] : 클릭 시 리플 효과 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
gitsuhyun committed Oct 10, 2024
1 parent 963d92f commit 4ca0c01
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion app/src/main/java/org/sopt/and/LoginActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,13 @@ fun LoginScreen(localEmail: String, localPassword: String) {
.fillMaxWidth()
.height(50.dp),
colors = ButtonDefaults.buttonColors(
containerColor = Color(0xFF1353FA)
containerColor = Color(0xFF1353FA),
contentColor = Color(0xFF1353FA),
),
elevation = ButtonDefaults.elevatedButtonElevation(
defaultElevation = 0.dp,
pressedElevation = 0.dp,
disabledElevation = 0.dp
),
shape = RoundedCornerShape(size = 50.dp),
onClick = {
Expand Down

0 comments on commit 4ca0c01

Please sign in to comment.