From df9013638df7323ad92a2fb5c293f6474e66abbc Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sat, 13 Feb 2021 08:56:43 +0100 Subject: [PATCH] fix: Hard to read titles in chat details --- lib/views/chat_details.dart | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/views/chat_details.dart b/lib/views/chat_details.dart index 763e788d..a31502a8 100644 --- a/lib/views/chat_details.dart +++ b/lib/views/chat_details.dart @@ -245,7 +245,7 @@ class _ChatDetailsState extends State { : null, title: Text('${L10n.of(context).groupDescription}:', style: TextStyle( - color: Theme.of(context).primaryColor, + color: Theme.of(context).accentColor, fontWeight: FontWeight.bold)), subtitle: LinkText( text: room.topic?.isEmpty ?? true @@ -269,7 +269,7 @@ class _ChatDetailsState extends State { title: Text( L10n.of(context).settings, style: TextStyle( - color: Theme.of(context).primaryColor, + color: Theme.of(context).accentColor, fontWeight: FontWeight.bold, ), ), @@ -483,7 +483,7 @@ class _ChatDetailsState extends State { actualMembersCount.toString()) : L10n.of(context).emptyChat, style: TextStyle( - color: Theme.of(context).primaryColor, + color: Theme.of(context).accentColor, fontWeight: FontWeight.bold, ), ), @@ -496,6 +496,7 @@ class _ChatDetailsState extends State { backgroundColor: Theme.of(context).primaryColor, foregroundColor: Colors.white, + radius: Avatar.defaultSize / 2, ), onTap: () => AdaptivePageLayout.of(context) .pushNamed('/rooms/${room.id}/invite'),