Skip to content

Commit 213db8c

Browse files
committed
format
1 parent ca78fa8 commit 213db8c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

lib/src/month_picker_widgets/header/header_arrows.dart

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)