-
Hello! I have started programming with js and faced with a problem: I don't understand how to make transition between screens. I use (kotlin/js). Forgive me for my stupidity... |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
There are 3 kinds of Compose for Web:
Transitions are only possible using Compose #2 and #3. Decompose currently only supports #1 and #2, because #3 is still very experimental. So if you want transitions with Decompose you would have to use Compose for Web (#2). Don't forget to use a
You can check this section in docs. It says "for iOS" but you could reuse it for any platform. |
Beta Was this translation helpful? Give feedback.
So i can't use transitions in #1? (in compose it sets with parameter "animation" in Children)