swipe icon indicating copy to clipboard operation
swipe copied to clipboard

Swipe gesture actions for Compose UI

Results 20 swipe issues
Sort by recently updated
recently updated
newest added

I can't detect swipe. These doen't work: ``` val actionsState = rememberSwipeableActionsState() val offset by actionsState.offset // Doesn't change value. Always 0.0 actionsState.isResettingOnRelease // Doesn't change value. Always false ```...

Currently the draggable state is set to overscroll with resistance when the scroll isn't allowed ([here](https://github.com/saket/swipe/blob/trunk/swipe/src/main/kotlin/me/saket/swipe/SwipeableActionsState.kt#L47)). This can easily interfere with any parent horizontal gestures. Add an option to disable...

First of all, love the repo. Nice job. It would be great if there was functionality similar to the Gmail app, where the icon stays static/in position on swipe, and...

I have a reveal action to disclose hidden information in the cell. Once the hidden information is shown, there's no more action to perform, in this case I'd like to...

Hey @saket - I'm trying to get this to work on web. Currently it builds, but swipe and scroll are not working (see recording). Before I invest time into this,...

Hi! After haptics feedback was added to this project, I noticed constant (and somehow annoying) vibration on slow swipes after threshold was crossed. Please consider changing it to one-shot vibration...

Fix #32 Context: The offsets from swipings are absolute, so the placement of icons should be as well

When i set the CompositionLocalProvider(LocalLayoutDirection provides LayoutDirection.Rtl) {} This issue occurs, Video link: https://github.com/user-attachments/assets/63e8941c-d627-4661-a5fb-4d838a0ca242

### changes: - applied pr #33 ### change `SwipeAction`: - add `enableAnimation` to control enable/disable animation - add `enableAct` to control enable/disable `onSwipe` - add `enableVibration` to control enable/disable vibration...