瀏覽代碼

Add hero animation to videos

Vishnu Mohandas 5 年之前
父節點
當前提交
d042d0dc2e
共有 1 個文件被更改,包括 5 次插入1 次删除
  1. 5 1
      lib/ui/video_widget.dart

+ 5 - 1
lib/ui/video_widget.dart

@@ -52,10 +52,14 @@ class _VideoWidgetState extends State<VideoWidget> {
 
   @override
   Widget build(BuildContext context) {
-    return _videoPlayerController != null &&
+    final content = _videoPlayerController != null &&
             _videoPlayerController.value.initialized
         ? _getVideoPlayer()
         : _getLoadingWidget();
+    return Hero(
+      tag: widget.file.generatedId.toString(),
+      child: content,
+    );
   }
 
   Widget _getLoadingWidget() {