Skip to content

Commit 1ad415f

Browse files
committed
feat(app_configuration): add icon to user limits tile
- Add Icons.manage_accounts_outlined to the leading of ExpansionTile - Set icon color to onSurface with 70% opacity
1 parent 74e5ef1 commit 1ad415f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lib/app_configuration/view/tabs/user_configuration_tab.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,12 @@ class _UserConfigurationTabState extends State<UserConfigurationTab> {
5252
builder: (context, expandedIndex, child) {
5353
const tileIndex = 0;
5454
return ExpansionTile(
55+
leading: Icon(
56+
Icons.manage_accounts_outlined,
57+
color: Theme.of(context).colorScheme.onSurface.withOpacity(
58+
0.7,
59+
),
60+
),
5561
key: ValueKey('userLimitsTile_$expandedIndex'),
5662
title: Text(l10n.userLimitsTitle),
5763
subtitle: Text(

0 commit comments

Comments
 (0)