fix: Remove opacity from video widget

This commit is contained in:
Krille Fear 2021-11-14 20:24:17 +01:00
parent 397c6ed292
commit 76d8dbbe09

View File

@ -109,16 +109,13 @@ class MessageContent extends StatelessWidget {
return Stack( return Stack(
alignment: Alignment.center, alignment: Alignment.center,
children: <Widget>[ children: <Widget>[
Opacity( ImageBubble(
opacity: 0.4,
child: ImageBubble(
event, event,
width: 400, width: 400,
height: 300, height: 300,
fit: BoxFit.cover, fit: BoxFit.cover,
tapToView: false, tapToView: false,
), ),
),
FloatingActionButton.extended( FloatingActionButton.extended(
onPressed: () => showDialog( onPressed: () => showDialog(
context: Matrix.of(context).navigatorContext, context: Matrix.of(context).navigatorContext,