My requirement is to open a specific screen of my app with when user says " Start Sleep meditation for 10 minutes" where Sleep and 10 minutes are dynamic values in the phrase. Is it possible just with a phrase we can get the values. Or do i need to ask using siri "which meditation" and then "how much tine". I am planning to use AppIntent and AppShortcut, along with Entities. But unable to open the shortcut when siri invokes with phrase i discussed above.
Siri Event Suggestions Markup
RSS for tagEmbed reservation data in email and webpages that updates user’s calendars and informs suggestions from Siri.
Posts under Siri Event Suggestions Markup tag
3 Posts
Sort by:
Post
Replies
Boosts
Views
Activity
It would be good if we could tallk to Siri with emojis as well. I’m pretty sure emojis are her’s native language.
'init(coordinateRegion:interactionModes:showsUserLocation:userTrackingMode:)' was deprecated in iOS 17.0: Use Map initializers that take a MapContentBuilder instead.
struct EmMapView: View {
@State private var region = MKCoordinateRegion(
center: CLLocationCoordinate2D(latitude: 37.7749, longitude: -122.4194),
span: MKCoordinateSpan(latitudeDelta: 0.1, longitudeDelta: 0.1)
)
var body: some View {
ZStack {
Map(coordinateRegion: .constant(region), interactionModes: .all, showsUserLocation: false, userTrackingMode: .none)
.edgesIgnoringSafeArea(.all)
.navigationTitle("Emmap")
}
}
}