Lukas
Lukas
**Describe the bug** If you call `undoLastSwipe(animated: true)` in `func cardStack(_ cardStack: SwipeCardStack, didSwipeCardAt index: Int, with direction: SwipeDirection)` it fails on the first card (the card is not being...
Given for example I have this component: ``` val container = rememberContentWithOrbitalScope { Box( modifier = Modifier .animateSharedElementTransition(this, SpringSpec(stiffness = 500f), SpringSpec(stiffness = 500f) ) .fillMaxSize() .clip(RoundedCornerShape(16.dp)) .background(Color.White), ) }...
``` ViewCompat.setOnApplyWindowInsetsListener(findViewById(android.R.id.content)) { view, insets -> val bottom = insets.getInsets(WindowInsetsCompat.Type.ime()).bottom view.updatePadding(bottom = bottom) insets } ``` Components wrapped into `Orbital {...}` do not resize if padding were to be updated...