From a713a2f352953f45e40d138b09a681e07508aff2 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sat, 17 Oct 2020 13:04:33 +0200 Subject: [PATCH] fix: Minor design fix --- lib/views/chat.dart | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/lib/views/chat.dart b/lib/views/chat.dart index ee4e2ee..50509a3 100644 --- a/lib/views/chat.dart +++ b/lib/views/chat.dart @@ -560,14 +560,11 @@ class _ChatState extends State<_Chat> { body: Stack( children: [ if (Matrix.of(context).wallpaper != null) - Opacity( - opacity: 0.66, - child: Image.file( - Matrix.of(context).wallpaper, - height: double.infinity, - width: double.infinity, - fit: BoxFit.cover, - ), + Image.file( + Matrix.of(context).wallpaper, + height: double.infinity, + width: double.infinity, + fit: BoxFit.cover, ), Column( children: [ @@ -812,8 +809,7 @@ class _ChatState extends State<_Chat> { room.canSendDefaultMessages && room.membership == Membership.join ? Container( decoration: BoxDecoration( - color: - Theme.of(context).backgroundColor.withOpacity(0.8), + color: Theme.of(context).backgroundColor, ), child: Row( crossAxisAlignment: CrossAxisAlignment.end,