Trigger app clip from view of another app

If I able to trigger app clip from another app? For example, I tap on Button or View and in gesture recogniser call a link. Something like this :
Code Block
struct ContentView: View {
var body: some View {
ScrollView {
Text("Hello, user!")
.padding()
VStack {
Text("Take a loan")
.foregroundColor(.white)
}
.padding()
.background(Color.blue)
.cornerRadius(6)
.onTapGesture(perform: {
if let url = URL(string: "https://ScroogeLoans.example.com/order?lat=33.8644&lon=-118.2611") {
UIApplication.shared.open(url)
}
})
VStack {
Text("Make a deposite")
}
.padding()
.background(Color.green)
.cornerRadius(6)
}
}
}
Answered by Apple Designer in 666200022
Hi Konstantin, app clips cannot be triggered from another app.

Accepted Answer
Hi Konstantin, app clips cannot be triggered from another app.

Trigger app clip from view of another app
 
 
Q