diff --git a/experimental/desktop_photo_search/lib/src/widgets/photo_details.dart b/experimental/desktop_photo_search/lib/src/widgets/photo_details.dart index 7c20ceb64..866a652a9 100644 --- a/experimental/desktop_photo_search/lib/src/widgets/photo_details.dart +++ b/experimental/desktop_photo_search/lib/src/widgets/photo_details.dart @@ -78,6 +78,7 @@ class _PhotoDetailsState extends State { ), child: FadeInImage.memoryNetwork( placeholder: kTransparentImage, + imageSemanticLabel: widget.photo.description, image: widget.photo.urls!.small!, ), ), @@ -94,6 +95,7 @@ class _PhotoDetailsState extends State { _buildPhotoAttribution(context), const SizedBox(width: 8), IconButton( + tooltip: 'Download', visualDensity: VisualDensity.compact, icon: const Icon(Icons.cloud_download), onPressed: () => widget.onPhotoSave(widget.photo),