From a809136474801d178ecf582c61fd6f1503a282f4 Mon Sep 17 00:00:00 2001 From: Ming Ming Date: Tue, 22 Jun 2021 04:02:09 +0800 Subject: [PATCH] Nav arrows should stay white --- lib/widget/viewer.dart | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/widget/viewer.dart b/lib/widget/viewer.dart index 99332405..6005849c 100644 --- a/lib/widget/viewer.dart +++ b/lib/widget/viewer.dart @@ -171,7 +171,10 @@ class _ViewerState extends State { padding: const EdgeInsets.symmetric( horizontal: 24, vertical: 36), child: IconButton( - icon: Icon(Icons.arrow_forward_ios_outlined), + icon: Icon( + Icons.arrow_forward_ios_outlined, + color: Colors.white, + ), onPressed: _switchToRightImage, ), ), @@ -205,7 +208,10 @@ class _ViewerState extends State { padding: const EdgeInsets.symmetric( horizontal: 24, vertical: 36), child: IconButton( - icon: Icon(Icons.arrow_back_ios_outlined), + icon: Icon( + Icons.arrow_back_ios_outlined, + color: Colors.white, + ), onPressed: _switchToLeftImage, ), ),