-
|
Using latest Skip Lite. Below example can be used to test. import SwiftUI
struct TestView: View {
@State var isPresented = false
var body: some View {
VStack(spacing: 16) {
Text("Long press does not work on Android [Link](https://skip.tools)")
.frame(maxWidth: .infinity, alignment: .leading)
.background(Color(.systemBackground))
.onLongPressGesture {
isPresented = true
}
Text("Long press works on both")
.frame(maxWidth: .infinity, alignment: .leading)
.background(Color(.systemBackground))
.onLongPressGesture {
isPresented = true
}
}
.padding(16)
.confirmationDialog("Title", isPresented: $isPresented) {
Button("Destructive", role: .destructive) {
}
}
}
} |
Beta Was this translation helpful? Give feedback.
Answered by
marcprux
Mar 30, 2026
Replies: 1 comment 1 reply
-
|
Confirmed. I'll make a skip-ui issue for this. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
marcprux
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Confirmed. I'll make a skip-ui issue for this.