File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -29,16 +29,19 @@ class HeaderArrows extends StatelessWidget {
2929 IconButton (
3030 icon: Icon (
3131 previousIcon ?? Icons .keyboard_arrow_up,
32- color: upState ? arrowcolors : arrowcolors! .withValues (alpha: arrowAlpha),
32+ color: upState
33+ ? arrowcolors
34+ : arrowcolors! .withValues (alpha: arrowAlpha),
3335 size: arrowSize,
3436 ),
3537 onPressed: upState ? onUpButtonPressed : null ,
3638 ),
3739 IconButton (
3840 icon: Icon (
3941 nextIcon ?? Icons .keyboard_arrow_down,
40- color:
41- downState ? arrowcolors : arrowcolors! .withValues (alpha: arrowAlpha),
42+ color: downState
43+ ? arrowcolors
44+ : arrowcolors! .withValues (alpha: arrowAlpha),
4245 size: arrowSize,
4346 ),
4447 onPressed: downState ? onDownButtonPressed : null ,
You can’t perform that action at this time.
0 commit comments