diff options
author | Malik Talha <talhamalik727x@gmail.com> | 2023-11-12 04:03:26 +0500 |
---|---|---|
committer | Malik Talha <talhamalik727x@gmail.com> | 2023-11-12 04:03:26 +0500 |
commit | d433980265de4eccd343dcbfc92c3e7416057842 (patch) | |
tree | 02e364a622c40f333999271862edf4c73ded8c31 /lib/models/app_state.dart | |
parent | 8417e9daeecbdb3847de401b0fcc6304d246a787 (diff) |
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 <talhamalik727x@gmail.com>
Change-Id: I1a279c6ecd1904c428b8403d3ce0750bc063da3b
Diffstat (limited to 'lib/models/app_state.dart')
-rw-r--r-- | lib/models/app_state.dart | 2 |
1 files changed, 2 insertions, 0 deletions
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..."; } |