mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 06:46:22 +01:00
Nav arrows should stay white
This commit is contained in:
parent
20a69b5620
commit
a809136474
1 changed files with 8 additions and 2 deletions
|
@ -171,7 +171,10 @@ class _ViewerState extends State<Viewer> {
|
|||
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<Viewer> {
|
|||
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,
|
||||
),
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue