mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 06:46:22 +01:00
Align icons in account dialog
This commit is contained in:
parent
2c6351dc9b
commit
dd78b99dee
1 changed files with 9 additions and 5 deletions
|
@ -235,11 +235,15 @@ class _AccountDropdown extends StatelessWidget {
|
|||
return AnimatedRotation(
|
||||
turns: state.isOpenDropdown ? .5 : 0,
|
||||
duration: k.animationDurationShort,
|
||||
child: Icon(
|
||||
Icons.keyboard_arrow_down_outlined,
|
||||
child: IgnorePointer(
|
||||
ignoring: true,
|
||||
child: IconButton(
|
||||
onPressed: () {},
|
||||
color: state.isOpenDropdown
|
||||
? Theme.of(context).colorScheme.primary
|
||||
: null,
|
||||
icon: const Icon(Icons.keyboard_arrow_down_outlined),
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue