mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-24 07:54:42 +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(
|
padding: const EdgeInsets.symmetric(
|
||||||
horizontal: 24, vertical: 36),
|
horizontal: 24, vertical: 36),
|
||||||
child: IconButton(
|
child: IconButton(
|
||||||
icon: Icon(Icons.arrow_forward_ios_outlined),
|
icon: Icon(
|
||||||
|
Icons.arrow_forward_ios_outlined,
|
||||||
|
color: Colors.white,
|
||||||
|
),
|
||||||
onPressed: _switchToRightImage,
|
onPressed: _switchToRightImage,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -205,7 +208,10 @@ class _ViewerState extends State<Viewer> {
|
||||||
padding: const EdgeInsets.symmetric(
|
padding: const EdgeInsets.symmetric(
|
||||||
horizontal: 24, vertical: 36),
|
horizontal: 24, vertical: 36),
|
||||||
child: IconButton(
|
child: IconButton(
|
||||||
icon: Icon(Icons.arrow_back_ios_outlined),
|
icon: Icon(
|
||||||
|
Icons.arrow_back_ios_outlined,
|
||||||
|
color: Colors.white,
|
||||||
|
),
|
||||||
onPressed: _switchToLeftImage,
|
onPressed: _switchToLeftImage,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Add table
Reference in a new issue