Removing elevation on filled button ( was visible in light themes )

This commit is contained in:
ThomasSession 2024-06-18 14:45:19 +10:00
parent 96d09f3367
commit 03b348fb69

View File

@ -44,6 +44,6 @@ interface ButtonType {
disabledContentColor = LocalColors.current.disabled,
disabledBackgroundColor = Color.Unspecified
)
override val elevation: ButtonElevation @Composable get() = ButtonDefaults.elevation()
override val elevation: ButtonElevation? @Composable get() = null
}
}