Skip to content
This repository was archived by the owner on Apr 24, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CODEBASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- Architecture follows `presentation -> domain -> data` with `get_it` + `provider`.
- Multi-platform targets in repo: Android, Linux, macOS, Windows, Web.
- Chat stack is decomposed into orchestrators plus focused cluster modules.
- Material icon migration in UI/tests is mostly on `Symbols.*` (`material_symbols_icons`), with a small remaining `Icons.*` usage in notifications settings UI.
- Material icon migration in UI is complete on `Symbols.*` (`material_symbols_icons`).
- Theme system follows Material You (MD3): user-controlled theme mode, dynamic color toggle, AMOLED dark toggle, brand color seeds, contrast level, and responsive window size classes.

## Folder Structure
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import 'dart:async';

import 'package:flutter/material.dart';
import 'package:material_symbols_icons/symbols.dart';
import 'package:provider/provider.dart';

import '../../../../core/constants/app_constants.dart';
Expand Down Expand Up @@ -160,7 +161,7 @@ class _BehaviorSettingsSectionState extends State<BehaviorSettingsSection> {
: () => unawaited(
settingsProvider.refreshOpenCodeBackedDefaults(),
),
icon: const Icon(Icons.refresh),
icon: const Icon(Symbols.refresh),
),
],
),
Expand Down Expand Up @@ -277,7 +278,7 @@ class _BehaviorSettingsSectionState extends State<BehaviorSettingsSection> {
onPressed: settingsProvider.openCodeDefaultsLoading
? null
: () => unawaited(_applyUsername(context)),
icon: const Icon(Icons.save),
icon: const Icon(Symbols.save),
label: const Text('Save username'),
),
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,9 +341,9 @@ class _NotificationsSettingsSectionState
null => Theme.of(context).colorScheme.onSurfaceVariant,
};
final statusIcon = switch (status) {
true => Icons.check_circle_outline,
false => Icons.warning_amber_rounded,
null => Icons.help_outline,
true => Symbols.check_circle,
false => Symbols.warning,
null => Symbols.help,
};
final statusText = switch (status) {
true => 'Battery optimization is disabled for CodeWalk.',
Expand Down
Loading