stevie
03/29/2025, 4:45 PMFernando
03/31/2025, 9:14 AMstevie
03/31/2025, 9:15 AMFernando
03/31/2025, 9:24 AMperform
funciton you should open the app and perform the navigation.
@available(iOS 16, *)
struct AddNewItemAppIntent: AppIntent {
static var title: LocalizedStringResource = "Add New Item"
static var description = IntentDescription("Open directly to add new Item in ABC")
static var openAppWhenRun: Bool = true
@MainActor
func perform() async throws -> some IntentResult {
return .result()
}
}
stevie
03/31/2025, 10:23 AMstevie
03/31/2025, 10:24 AMstevie
04/01/2025, 9:14 AMstevie
04/12/2025, 3:32 PMFernando
04/12/2025, 4:16 PMstevie
04/13/2025, 4:09 AM