mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-12-25 06:52:35 +01:00
chore: Fix videoplayer centerized
This commit is contained in:
parent
b8dc6c1e14
commit
b571f84991
@ -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(
|
||||
|
Loading…
Reference in New Issue
Block a user