From 749e878d4f40f4475ffa18734efe15b93a75ce67 Mon Sep 17 00:00:00 2001 From: Emir Demirli <50905347+commandiron@users.noreply.github.com> Date: Mon, 31 Oct 2022 09:00:56 +0300 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 945516c..914040f 100644 --- a/README.md +++ b/README.md @@ -378,12 +378,12 @@ Box( ) { AnimatableCard( modifier = Modifier.size(100.dp), - state = sharedAnimatableState + state = sharedAnimatableState // pass shared state ) { Box(Modifier.fillMaxSize(), Alignment.Center) { AnimatableText( text = "Animatable", - state = sharedAnimatableState + state = sharedAnimatableState // pass shared state ) } }