Questions tagged [swipe]

A quick motion gesture across the touchscreen.

A quick motion gesture across a touchscreen.

2837 questions
0
votes
0 answers

How to create a two direction swip in a Flutter page?

I am interested to know how can I make a PageView widget swipe able to both directions at the same time, like what we can see in the TikTok app that you can swipe videos vertically to change them, then also you can swipe to right or left to see the…
0
votes
0 answers

How to execute an accessibilityAction when swiping with two or three fingers while VoiceOver is on?

Is there a native SwiftUI accessibility modifier that allows to perform an action when a user swipes horizontally with two or three fingers while VoiceOver is on? I've looked at various SwiftUI accessibility modifiers, but none of them seem to solve…
Hollycene
  • 287
  • 1
  • 2
  • 12
0
votes
0 answers

How to create android swipe-sensitive area pulls a layout up into the visible area

The biggest problem is that I can't formulate my question, so I couldn't even search for the solution. I don't know if I'm going in the right direction at all. I would to be able to swipe up to drag(?) a new layout into the visible area. This should…
sarkiroka
  • 1,485
  • 20
  • 28
0
votes
2 answers

Defining maximum variance of an UITextView

If you have a normal UITextView with loads of text in it you can swipe up and down: if you swipe left or right in a very horizontal line, nothing will happen if you swipe left or right with a very slight angle, you will swipe up or down So there…
n.evermind
  • 11,944
  • 19
  • 78
  • 122
0
votes
2 answers

How is Pagination done in iPhone or Xcode?

I would like to know how PAGINATION is done using a "SWIPE". Got a page with the name "Account Details" and this "Account Details" page should have around 4 PAGEs within that Account Details of 4 more accounts. These has got the information about…
Nishan29
  • 353
  • 1
  • 4
  • 16
0
votes
0 answers

How to make a js active just on the second visit on the webpage?

I have a finger swipe js script with sessionStorage. let touchstartX = 0; let touchendX = 0; function checkDirection() { if (touchendX < touchstartX && !sessionStorage.getItem('firstTime')) { window.location.href = '/'; …
WhoAmI
  • 33
  • 5
0
votes
0 answers

Swipable tabbed view in wearOS with Compose

I am extremely new to Compose and wearOS and I've been looking through a ton of tutorials trying to find a way to have a multi-screen application in wearOS that doesn't rely on tap events to navigate between views. I come from iOS and Swift/SwiftUI…
Neglected Sanity
  • 1,770
  • 6
  • 23
  • 46
0
votes
0 answers

Why does my Swipe component take so long to re-render?

I'm currently learning React Native and I have been stuck on my component for several hours. It is an image swipe system. I know there are a lot of packages that do what I want, but I'd rather create my own system to learn better. Here is the…
Hapax
  • 31
  • 4
0
votes
0 answers

Mobile swipe id="next", id="prev" for html pages

I have simple html pages on a website with a href id prev and next, so the current page (page two) has two arrows with the following a href ← →: with…
Mike
  • 2,051
  • 4
  • 28
  • 46
0
votes
0 answers

ScrollView inside material top tabs navigation

I have this material top tabs navigation in react native : ({ swipeEnabled: true, })}>
0
votes
0 answers

Blazor - scroll activated styles - mobile devices scroll / swipe event

I'm trying to add a class to an element when I scroll down and remove this class when I scroll up my .NET Blazor Web Assembly App. The desktop version is working well (using WheelEventArgs - DeltaY property) but the problem is the code is not…
Robur
  • 101
  • 1
  • 3
0
votes
0 answers

Separation between bottom navbar and swipe left/right

I want to create an application with bottom navbar with the possibility of swipe right and left to change fragment. After implementing these features, I noticed that the swipe works by changing the corresponding fragment on the navbar. But a second…
0
votes
0 answers

How to create Android swipe like Swift UITableView Swipe Actions?

How to create Android swipe like the native swift ui code presented in here? I've been searching everywhere but couldn't find a solution. A close approach can be found in this library but it's not enough. Is there any way to implement exactly as in…
radus14
  • 140
  • 2
  • 8
0
votes
0 answers

Svelte swipe animation works perfectly from top to bottom but not bottom to top

I am trying to achive a feature where the user will be able to drag a card component up or down for either extending the content and make the card cover the screen or close the card. The card is resting above a map. I found this one svelte-gestures…
0
votes
1 answer

How to slow down scroll velocity in flutter

I am trying to implement a slower scroll velocity in carousel_slider widget, or some better snapping. the problem is that if the user does a very fast swipe motion a couple of items will be scrolled instead of snapping tot he next one. i want to…
Tom Cohen
  • 79
  • 6
1 2 3
99
100