diff --git a/packages/stream_chat_v1/lib/chat_info_screen.dart b/packages/stream_chat_v1/lib/chat_info_screen.dart index b0d18d9..eca16bb 100644 --- a/packages/stream_chat_v1/lib/chat_info_screen.dart +++ b/packages/stream_chat_v1/lib/chat_info_screen.dart @@ -205,9 +205,9 @@ class _ChatInfoScreenState extends State { tileColor: StreamChatTheme.of(context).colorTheme.whiteSnow, titleTextStyle: StreamChatTheme.of(context).textTheme.body, leading: Padding( - padding: const EdgeInsets.symmetric(horizontal: 16.0), + padding: const EdgeInsets.symmetric(horizontal: 22.0), child: StreamSvgIcon.pin( - size: 36.0, + size: 24.0, color: StreamChatTheme.of(context).colorTheme.black.withOpacity(0.5), ), diff --git a/packages/stream_chat_v1/lib/group_info_screen.dart b/packages/stream_chat_v1/lib/group_info_screen.dart index dda7eb8..6c45757 100644 --- a/packages/stream_chat_v1/lib/group_info_screen.dart +++ b/packages/stream_chat_v1/lib/group_info_screen.dart @@ -488,9 +488,9 @@ class _GroupInfoScreenState extends State { tileColor: StreamChatTheme.of(context).colorTheme.whiteSnow, titleTextStyle: StreamChatTheme.of(context).textTheme.body, leading: Padding( - padding: const EdgeInsets.symmetric(horizontal: 12.0), + padding: const EdgeInsets.symmetric(horizontal: 16.0), child: StreamSvgIcon.pin( - size: 32.0, + size: 24.0, color: StreamChatTheme.of(context).colorTheme.black.withOpacity(0.5), ), diff --git a/packages/stream_chat_v1/lib/pinned_messages_screen.dart b/packages/stream_chat_v1/lib/pinned_messages_screen.dart index acfdb2d..82dd532 100644 --- a/packages/stream_chat_v1/lib/pinned_messages_screen.dart +++ b/packages/stream_chat_v1/lib/pinned_messages_screen.dart @@ -182,8 +182,8 @@ class _PinnedMessagesScreenState extends State { leading: UserAvatar( user: user, constraints: BoxConstraints( - maxWidth: 56.0, - minHeight: 56.0, + maxWidth: 40.0, + minHeight: 40.0, ), borderRadius: BorderRadius.circular(28), ), @@ -221,4 +221,4 @@ class _PinnedMessagesScreenState extends State { c!.dispose(); } } -} \ No newline at end of file +}