aboutsummaryrefslogtreecommitdiffstats
path: root/lib/models/app_state.dart
diff options
context:
space:
mode:
authorAnuj Solanki <anuj603362@gmail.com>2024-09-29 15:57:43 +0530
committerAnuj Solanki <anuj603362@gmail.com>2024-09-29 16:16:41 +0530
commit053ba8d80e405ca84a0e179c1551c3d440829579 (patch)
treeafcbe6698afcef799d15f0730d6346e859a5e469 /lib/models/app_state.dart
parent539efac2637415a930b3077ff91abe003ce2fcd4 (diff)
Implemented auto-mode
- Implemented auto-mode in flutter-speechrecognition-demo to recognize the wake word and start the voice assistant automatically. Bug-AGL: SPEC-5200 Change-Id: Ic946a3f4535a7b16a4e45a5ffdf4a3b4015fdb6f Signed-off-by: Anuj Solanki <anuj603362@gmail.com>
Diffstat (limited to 'lib/models/app_state.dart')
-rw-r--r--lib/models/app_state.dart1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/models/app_state.dart b/lib/models/app_state.dart
index 8325b50..4c97654 100644
--- a/lib/models/app_state.dart
+++ b/lib/models/app_state.dart
@@ -9,4 +9,5 @@ class AppState extends ChangeNotifier {
String commandProcessingText = "Processing...";
String sttFramework = "vosk";
bool onlineMode = false;
+ int recordingTime = 4;
}