Increase resolution of fullscreen photo gallery images

This commit is contained in:
Shawn 2023-10-03 14:20:14 -06:00
parent 0fa3a344c9
commit 431a17dc1d

View File

@ -107,7 +107,7 @@ class _PhotoGalleryState extends State<PhotoGallery> {
Future<void> _handleImageTapped(int index) async {
if (_index == index) {
final urls = _photoIds.value.map((e) {
return UnsplashPhotoData.getSelfHostedUrl(e, UnsplashPhotoSize.med);
return UnsplashPhotoData.getSelfHostedUrl(e, UnsplashPhotoSize.xl);
}).toList();
int? newIndex = await appLogic.showFullscreenDialogRoute(
context,