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) } } }