Skip to content

Commit 74e5ef1

Browse files
committed
feat(app_configuration): add icons to expansion tiles
- Add system_update_alt_outlined icon to app status and updates tile - Add link_outlined icon to app URLs tile - Set icon color to onSurface with 70% opacity for both tiles
1 parent f2971ed commit 74e5ef1

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

lib/app_configuration/view/tabs/system_configuration_tab.dart

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@ class _SystemConfigurationTabState extends State<SystemConfigurationTab> {
5353
builder: (context, expandedIndex, child) {
5454
const tileIndex = 0;
5555
return ExpansionTile(
56+
leading: Icon(
57+
Icons.system_update_alt_outlined,
58+
color: Theme.of(context).colorScheme.onSurface.withOpacity(
59+
0.7,
60+
),
61+
),
5662
key: ValueKey('appStatusAndUpdatesTile_$expandedIndex'),
5763
title: Text(l10n.appStatusAndUpdatesTitle),
5864
subtitle: Text(
@@ -146,6 +152,12 @@ class _SystemConfigurationTabState extends State<SystemConfigurationTab> {
146152
builder: (context, expandedIndex, child) {
147153
const tileIndex = 1;
148154
return ExpansionTile(
155+
leading: Icon(
156+
Icons.link_outlined,
157+
color: Theme.of(context).colorScheme.onSurface.withOpacity(
158+
0.7,
159+
),
160+
),
149161
key: ValueKey('appUrlsTile_$expandedIndex'),
150162
title: Text(l10n.appUrlsTitle),
151163
subtitle: Text(

0 commit comments

Comments
 (0)