gesture Questions
4
Solved
I create the new react native app using command react-native init appName.
After the app created successfully install it in my device using command react-native run-android, it installed successful...
Cordie asked 3/2, 2019 at 16:2
2
I trying to make keyboard extension on SwiftUI. My keyboard uses gestures a lot. But gestures up from keys located near the screen bottom are to be recognized as a system gesture. As it was said he...
Enhanced asked 15/4, 2020 at 11:51
2
I have looked over the Internet for a way to change the actions of the different gesture on my touchpad on Windows 10 and did not find anything except the software made by the provider of the...
Priestcraft asked 24/12, 2015 at 15:24
3
Solved
I'm trying to make a TextView that you can move around like snapchat does. I have made something similar to it, although when you try and scale while rotates, it tends to stretch horizontally infin...
2
Solved
I'm using a gesture detector to capture scroll events from a scroll view:
val gestureDetector = GestureDetector(this.fragment.activity, ScrollGestureListener(scrollView))
scrollView.setOnTouchListe...
Afternoons asked 7/10, 2022 at 19:22
1
My app uses Gestures to change panes. In one of these panes I have a flutter_map widget in a Container.
I've been looking for a way to prevent all gestures in the Container from bubbling up the Wi...
11
Solved
So I have a navigation controller in my built for iOS 7 app. The titleView is visible, as well as the back button and navigation bar its self. For some reason, the interactive pop gesture (swipe fr...
Auscultate asked 22/9, 2013 at 16:52
4
Solved
I am doing a react native course with Mosh (https://codewithmosh.com/). I am using expo. I am very new to react native and don't really know what I am doing, but I know my code should work. I doubl...
Thermoelectric asked 31/12, 2021 at 19:46
5
Solved
I was making a fullscreen photo viewer which contain a pager (used HorizontalPager) and each page, user can zoom in/out and pan the image, but still able to swipe through pages.
My idea is swiping ...
Cattegat asked 17/2, 2022 at 10:4
3
When I try to use the Android studio emulator, the pinch to zoom appears by clicking on some shortcuts accidentally and I need to know how to cancel the pinch to zoom option.
Laudanum asked 1/7, 2020 at 3:53
3
I have been using the following extension throughout iOS 15 and iOS 16 seemingly with no issues. For context, I implemented this in my project to offer the ability to retain the swipe-back gesture ...
Catnip asked 4/10, 2023 at 0:56
8
Solved
A Stack contains MyWidget inside of a Positioned.
Stack(
overflow: Overflow.visible,
children: [
Positioned(
top: 0.0,
left: 0.0,
child: MyWidget(),
)],
);
Since overflow is Overflow.visi...
Eccrinology asked 16/7, 2018 at 16:59
2
I have a piece of code that allows you to zoom in and out on a circle with a gradient using the magnification gesture. This works fine if I place my fingers in the middle of the screen and zoom, bu...
Pomp asked 19/5, 2021 at 13:52
3
Solved
6
Solved
I have created a DragGesture in a View that should select a @State(Bool) whether the user swipe left or right.
The thing is that only swiping right is detected.
How to use .gesture() to capture ...
8
Solved
Could you please let me know how can I recognize long press gesture in Xamarin Forms application?
A few days before I used TapGestureRecognizer
TapGestureRecognizer imageTap = new TapGestureRe...
Guzman asked 23/4, 2017 at 9:38
5
Solved
I would like to recognize a TapGesture and LongPressGesture on the same item. And it works fine, with the following exception: the LongPressGesture alone responds after the duration I specify, whic...
Hiatus asked 28/3, 2021 at 17:34
10
Solved
I'm trying to detect when a finger first makes contact with a view in SwiftUI. I could do this very easily with UIKit Events but can't figure this out in SwiftUI.
I've tried a DragGesture with mini...
6
Solved
I am trying to detect a tap on the screen. I've tried multiple variation of using the GestureDetector but that just leads to the app detecting tap on the child element and not the screen.
Here is ...
3
Solved
I have a scrollable widget, say a ListView, which contains some special widget.
How can I prevent the scrollable to scroll when the user tries to scroll by starting to scroll on top of that widge...
1
Solved
So I asked a different question before, and arrived at a partial solution. I was able to add gestures to ONE of the two model entities on one scene, but not the other. Because when you print the sc...
Theologue asked 30/4, 2023 at 0:13
2
Solved
I am using the RefreshIndicator widget - the usage looks something like this:
RefreshIndicator(
onRefresh: () => refreshState(), // Invokes a method on a state object that is mocked in my test
...
3
I have the following SwiftUI view:
struct ContentView: View {
@State var model: Model
var body: some View {
ScrollView {
LazyVGrid(columns: columns, spacing: 10) {
ForEach(model.events, id: ...
Insensible asked 3/7, 2020 at 6:21
4
I am writing widget tests for a widget that handles actions when the user performs a scale/zooming gesture on it by instantiating a GestureDetector with the onScaleUpdate property callback. I know ...
Trueblue asked 8/3, 2020 at 15:33
4
How do I disable / escape drag down gesture within the Bottom Sheet Modal so the user can interact within the modal without accidentally closing the modal?
Updated below with the actual modal bott...
Electrometer asked 18/2, 2019 at 8:58
1 Next >
© 2022 - 2024 — McMap. All rights reserved.