Created
October 5, 2022 11:44
-
-
Save cp-radhika-s/a9dd24522d6c0ba296077fd5fae612e0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Composable | |
fun NoRippleEffect3() { | |
CompositionLocalProvider(LocalRippleTheme provides NoRippleTheme) { | |
Button( | |
onClick = { | |
//Clicked | |
}, shape = RoundedCornerShape(12.dp), | |
contentPadding = PaddingValues(16.dp) | |
) { | |
Text(text = "Click me") | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment