From 00ef0102f56d9143856fad5282cc5e7a3d4b1493 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Thu, 2 Apr 2020 14:16:45 +0200 Subject: [PATCH] Design changes --- lib/views/chat.dart | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/lib/views/chat.dart b/lib/views/chat.dart index eb95c9b..d7ef9bf 100644 --- a/lib/views/chat.dart +++ b/lib/views/chat.dart @@ -535,20 +535,16 @@ class _ChatState extends State<_Chat> { ), ), ), + Divider( + height: 1, + color: Theme.of(context).secondaryHeaderColor, + thickness: 1, + ), room.canSendDefaultMessages && room.membership == Membership.join ? Container( decoration: BoxDecoration( color: Theme.of(context).backgroundColor, - boxShadow: [ - BoxShadow( - color: Colors.grey.withOpacity(0.2), - spreadRadius: 1, - blurRadius: 2, - offset: - Offset(0, -1), // changes position of shadow - ), - ], ), child: Row( crossAxisAlignment: CrossAxisAlignment.center,