Package-level declarations

Functions

Link copied to clipboard
fun EditionScreen(modifier: Modifier = Modifier, onDelete: () -> Unit = {})
Link copied to clipboard
fun SwipeBox(modifier: Modifier = Modifier, isOnEditState: Boolean, defaultColor: Color = MaterialTheme.colorScheme.background, activeColor: Color = MaterialTheme.colorScheme.primary, cornersShape: Shape = MaterialTheme.shapes.medium, swipeListener: (Boolean) -> Unit, content: @Composable BoxScope.() -> Unit)

Composable to create a swipe effect. The more far away for the original position the user is, the harder it will be to keep moving, which mimics an elastic effect. The recomended usage of this compose is to create a swipe to edit functionality.