fix(mobile): first stack list asset is now highlighted on view (#4802)

This commit is contained in:
doggo 2023-11-04 01:43:43 +00:00 committed by GitHub
parent 2e424fe249
commit de29480dda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -443,7 +443,8 @@ class GalleryViewerPage extends HookConsumerWidget {
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(6),
border: index == stackIndex.value
border: (stackIndex.value == -1 && index == 0) ||
index == stackIndex.value
? Border.all(
color: Colors.white,
width: 2,