is there a kotlin js wrapper for framer motion or ...
# javascript
r
is there a kotlin js wrapper for framer motion or something else to get easy list animations (delete / insert of items) without writing much code myself
eg
Copy code
// Scroll container
Box {
    sx {
        height = 100.vh
        overflowY = Overflow.scroll
        overflowX = Overflow.hidden
        paddingBottom = 100.px
        scrollbarColor = ScrollbarColor(thm.getDynamicColor(DynamicColors.Divider), Colors.TRANSPARENT)
        scrollbarWidth = ScrollbarWidth.thin
    }

    // Grid
    Box {
        sx {
            display = Display.grid
            gridTemplateColumns = defaultCardSize
        }

        recordings.forEach { recording -> // would like this list  to animate on changes

            CollectionItem {
a
@turansky ^^
t
AFAIK it already exist in MUI
r
which api?
t
It's better to check MUI documentation for details
r
thats the underlying js code, what kotlin wrapper is there available for it? https://github.com/JetBrains/kotlin-wrappers