chore: Fix videoplayer centerized

This commit is contained in:
Christian Pauly 2021-12-28 19:44:55 +01:00
parent b8dc6c1e14
commit b571f84991
1 changed files with 7 additions and 2 deletions

View File

@ -95,15 +95,20 @@ class _EventVideoPlayerState extends State<EventVideoPlayer> {
final chewieManager = _chewieManager;
return Material(
color: Colors.black,
child: SizedBox(
width: 400,
height: 300,
child: chewieManager != null
? Center(child: Chewie(controller: chewieManager))
: Stack(
children: [
if (hasThumbnail)
ImageBubble(widget.event)
Center(
child: ImageBubble(
widget.event,
tapToView: false,
),
)
else
BlurHash(hash: blurHash),
Center(