All Questions
208
questions
-1
votes
0
answers
11
views
Avoid browser intercepting back gesture on IOS
before asking the question here's a bit of context.
I'm developing a website that's hosting a component Tinder-like with some swipable cards.
While testing (i'd say of course) I found out that on the ...
0
votes
0
answers
62
views
UIHostingController NavigationBar glitches when swipe gesture
It seems like an Apple bug because it only happens in newer devices like the iPhone 15 Pro.
Using a coordinator as UINavigationController sets the UIViewController as the viewControllers. In the ...
1
vote
0
answers
90
views
How to Implement Swipe Gestures in Vaadin Flow and Customize Behavior
I am working on a PWA project using Vaadin Flow, and I'm interested in implementing swipe gestures similar to mobile app behavior. Specifically, I want to create a UI where users can swipe left or ...
1
vote
0
answers
125
views
Play audio on swipe SAFARI IOS 17
I would like to play an audio buffer on a swipe gesture in Safari Mobile.
Seems Safari mobile iOS 17 dropped all support for unlocking audio on events other then a click event or touch (without ...
0
votes
1
answer
525
views
React Native - Long press and pan/swipe to select element
I was trying to create a longpress and swipe/pan to focus/select element.
import React, {useState} from 'react';
import {
View,
StyleSheet,
Text,
ViewProps,
TouchableOpacity,
} from 'react-...
1
vote
0
answers
140
views
How can I create a navigation view for iOS using Swift to swipe left and right through a set of images
I would like to create a navigation view for iOS using swift to scroll through a collection of images in a similar fashion to the Photo application on an iPhone. I believe that I need to create a ...
0
votes
2
answers
952
views
Swipe up or pull up to refresh in React-Native
I am trying to implement a feature in which whenever I went to end the end of the FlatList and then when I swipe up or pull up for some small time, then this acts as a refresh and required data get ...
2
votes
0
answers
330
views
How to handle gestures without blocking touches of the lower views in Jetpack Compose?
My task is to handle the swipe left / swipe right gestures which should not block the touching of the views under that.
I used that approach, but it blocks any touching to the lower views:
Box {
...
0
votes
1
answer
1k
views
On android of react-native-modalize swipe is not working
On android of react-native-modalize it is not possible to close the modal by swipe. On IOS it is working perfect with out any bugs, even ScrollView inside of modal. I tried to add properties but it ...
3
votes
2
answers
4k
views
Kotlin Jetpack Compose DragGesture property cancel the scrolling of my View
I'am new to jetpack compose and i really liked it. But ran into a problem : I want know if my view is swiped up or down so i created a LazyColumn with some item in it to be able to scroll something. ...
0
votes
2
answers
16k
views
React native - Drag up modal from bottom while swiping up on the screen
How would one slowly drag a modal up when swiping up on the screen, drag it up completley if swiped up fast and close when swiped down.
This is just like how Snapchat works in the video shown bellow.
...
3
votes
0
answers
618
views
how to perform action based on swipe left or swipe right on Apple TV with a Siri remote? SwiftUI Xcode 13
I've tried the answer provided here:
Detect Siri Remote swipe in SwiftUI
but it seems a bit like a hack, and it produces this error:
Thread 1: Fatal error: Unexpectedly found nil while unwrapping an ...
2
votes
0
answers
300
views
Two sections in screen and change height via swipe in react native
We have two sections of screen and section one height + section two = total height of screen. If user swipe Up or down from middle button base on that both section will be decrease and increase in a ...
1
vote
2
answers
77
views
Dettach SwipeListener from Recyclerview
I've got a simple left/right swipe listener for my RecyclerView, so I created the following function in my fragment.
ItemTouchHelper itemTouchHelper;
public void setDeleteUpdateSwipeListener() {
...
3
votes
1
answer
2k
views
How can I simulate a tap/swipe gesture on some part of the screen programmatically in SwiftUI?
I have a SwiftUI app that behaves similarly to Tinder (built using this guide - or see source code). You just swipe a stack of cards left and right. I have a "thumbs up" and "thumbs ...