Skip to content

Commit 112c244

Browse files
committed
theme [nfc]: Cut redundant icon color in AppBar action
We already specify this in AppBarTheme.actionsIconTheme.color in our global theme.
1 parent 39f0d70 commit 112c244

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/widgets/app.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,6 @@ class ChooseAccountPageOverflowButton extends StatelessWidget {
316316

317317
@override
318318
Widget build(BuildContext context) {
319-
final designVariables = DesignVariables.of(context);
320319
final materialLocalizations = MaterialLocalizations.of(context);
321320
return MenuAnchor(
322321
menuChildren: [
@@ -336,7 +335,7 @@ class ChooseAccountPageOverflowButton extends StatelessWidget {
336335
controller.open();
337336
}
338337
},
339-
icon: Icon(Icons.adaptive.more, color: designVariables.icon));
338+
icon: Icon(Icons.adaptive.more));
340339
});
341340
}
342341
}

0 commit comments

Comments
 (0)