feat(ios): Add App Intents support for Conduit interactions

This commit is contained in:
cogwheel0
2025-11-25 00:53:13 +05:30
parent 000b25e515
commit 6d56f5d160
8 changed files with 175 additions and 4 deletions

View File

@@ -156,10 +156,10 @@ class AndroidAssistantHandler {
return;
}
// Navigate to voice call page
// Navigate to voice call page with new conversation flag
await Navigator.of(context).push(
MaterialPageRoute(
builder: (context) => const VoiceCallPage(),
builder: (context) => const VoiceCallPage(startNewConversation: true),
fullscreenDialog: true,
),
);