Originally posted by makcakir March 17, 2026
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) {
}
}
}
}
``` </div>
Discussed in https://github.com/orgs/skiptools/discussions/637
Originally posted by makcakir March 17, 2026
Using latest Skip Lite. Below example can be used to test.