diff options
author | 2023-11-16 22:04:56 +0500 | |
---|---|---|
committer | 2023-11-16 22:04:56 +0500 | |
commit | ecd34435c1a74b39bf41d59ad479fdc85d0afb7b (patch) | |
tree | 1ed954b6c53321f854355bf82d13b736364e595b /lib/widgets/assistant_mode_choice.dart | |
parent | d433980265de4eccd343dcbfc92c3e7416057842 (diff) |
Add themes to voice assistant app
Add four themes: "light", "dark", "textured-light", and
"textured-dark" to the voice assistant app. Themes can be
changed by modifying assets/config.json file.
Bug-AGL: SPEC-4906
Signed-off-by: Malik Talha <talhamalik727x@gmail.com>
Change-Id: I3e257da70543c7918e4f0cf96a62907390af8480
Diffstat (limited to 'lib/widgets/assistant_mode_choice.dart')
-rw-r--r-- | lib/widgets/assistant_mode_choice.dart | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/lib/widgets/assistant_mode_choice.dart b/lib/widgets/assistant_mode_choice.dart index d0c1953..c2afe5b 100644 --- a/lib/widgets/assistant_mode_choice.dart +++ b/lib/widgets/assistant_mode_choice.dart @@ -75,8 +75,10 @@ enum AssistantMode { wakeWord, manual } class AssistantModeChoice extends StatefulWidget { final Function(AssistantMode) onModeChanged; + final String theme; - const AssistantModeChoice({Key? key, required this.onModeChanged}) + const AssistantModeChoice( + {Key? key, required this.onModeChanged, required this.theme}) : super(key: key); @override @@ -85,11 +87,14 @@ class AssistantModeChoice extends StatefulWidget { class AssistantModeChoiceState extends State<AssistantModeChoice> { late AssistantMode _selectedMode; + late String _theme; @override void initState() { super.initState(); _selectedMode = AssistantMode.manual; // Initialize the selection + _theme = widget.theme; + print(widget.theme); } @override @@ -112,7 +117,9 @@ class AssistantModeChoiceState extends State<AssistantModeChoice> { ), color: _selectedMode == AssistantMode.wakeWord ? Colors.green - : Colors.white, + : _theme == "dark" || _theme == "textured-dark" + ? Colors.black + : Colors.white, border: Border.all( color: Colors.transparent, ), @@ -157,7 +164,9 @@ class AssistantModeChoiceState extends State<AssistantModeChoice> { ), color: _selectedMode == AssistantMode.manual ? Colors.green - : Colors.white, + : _theme == "dark" || _theme == "textured-dark" + ? Colors.black + : Colors.white, border: Border.all( color: Colors.transparent, ), |