Skip to content

Commit

Permalink
fixup! improve: images/videos viewer
Browse files Browse the repository at this point in the history
  • Loading branch information
sherlockvn committed Oct 5, 2023
1 parent 8cf1932 commit 37298bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/presentation/mixins/play_video_action_mixin.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ mixin PlayVideoActionMixin {
HeroPageRoute(
builder: (context) {
return InteractiveViewerGallery(
itemBuilder: PlatformInfos.isWeb
? VideoViewerDesktopTheme(path: uriOrFilePath)
: VideoViewerMobileTheme(path: uriOrFilePath),
itemBuilder: PlatformInfos.isMobile
? VideoViewerMobileTheme(path: uriOrFilePath)
: VideoViewerDesktopTheme(path: uriOrFilePath),
);
},
),
Expand Down

0 comments on commit 37298bf

Please sign in to comment.