From d433980265de4eccd343dcbfc92c3e7416057842 Mon Sep 17 00:00:00 2001 From: Malik Talha Date: Sun, 12 Nov 2023 04:03:26 +0500 Subject: Add sample command section to voice assistant app Add a section that allows to choose and execute sample commands and minor improvements to app UI. Bug-AGL: SPEC-4906 Signed-off-by: Malik Talha Change-Id: I1a279c6ecd1904c428b8403d3ce0750bc063da3b --- lib/models/app_state.dart | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/models') diff --git a/lib/models/app_state.dart b/lib/models/app_state.dart index be39bd2..709b445 100644 --- a/lib/models/app_state.dart +++ b/lib/models/app_state.dart @@ -5,4 +5,6 @@ class AppState extends ChangeNotifier { bool isWakeWordMode = false; String intentEngine = "snips"; String streamId = ""; + bool isCommandProcessing = false; + String commandProcessingText = "Processing..."; } -- cgit