From e40417b0614ba5333bcfecd89afe1e0bdf298377 Mon Sep 17 00:00:00 2001 From: Shivamdhuria Date: Sat, 11 Dec 2021 23:58:20 +0530 Subject: [PATCH] Update README.md --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8691765..7db138f 100644 --- a/README.md +++ b/README.md @@ -59,10 +59,12 @@ override fun onCreate(savedInstanceState: Bundle?) { SurfaceTheme() { Surface() { Box(modifier = Modifier.fillMaxSize()) { - fun RadialReflectiveButton(rotationValue = rollAngle, onClick = } - ,shape = RoundedCornerShape(50)) { - Icon(Icons.Outlined.Pause, contentDescription = "content description", tint = GREY600) - } + + RadialReflectiveButton(rotationValue = rollAngle, onClick = {}) + { + Icon(Icons.Outlined.Pause, contentDescription = "content description", tint = GREY600) + } + } } }