Skip to content

Commit

Permalink
[mod] #6 button style
Browse files Browse the repository at this point in the history
  • Loading branch information
seohee0925 committed Jul 4, 2024
1 parent 20430e4 commit 70722ae
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,14 @@ fun RecordyButton(
Button(
onClick = onClick,
enabled = enabled,

colors = ButtonDefaults.buttonColors(
containerColor = if (enabled) RecordyTheme.colors.main else RecordyTheme.colors.gray08,
contentColor = if (enabled) RecordyTheme.colors.gray09 else RecordyTheme.colors.gray04,
containerColor = RecordyTheme.colors.main,
contentColor = RecordyTheme.colors.gray09,
disabledContainerColor = RecordyTheme.colors.gray08,
disabledContentColor = RecordyTheme.colors.gray04,
),

shape = RoundedCornerShape(12.dp),
modifier = modifier
.fillMaxWidth()
Expand Down

0 comments on commit 70722ae

Please sign in to comment.