From 4ef7516b52b06efe4a90d16ef928f020e4d45124 Mon Sep 17 00:00:00 2001 From: Deven Joshi Date: Mon, 4 Jan 2021 17:22:14 +0530 Subject: [PATCH] fix: chat_info_screen.dart --- example/lib/chat_info_screen.dart | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/example/lib/chat_info_screen.dart b/example/lib/chat_info_screen.dart index 50cb16f8..5eb0df7d 100644 --- a/example/lib/chat_info_screen.dart +++ b/example/lib/chat_info_screen.dart @@ -28,12 +28,14 @@ class _ChatInfoScreenState extends State { body: ListView( children: [ _buildUserHeader(), - SizedBox( + Container( height: 8.0, + color: StreamChatTheme.of(context).colorTheme.greyGainsboro, ), _buildOptionListTiles(), - SizedBox( + Container( height: 8.0, + color: StreamChatTheme.of(context).colorTheme.greyGainsboro, ), if ([ 'admin', @@ -139,7 +141,7 @@ class _ChatInfoScreenState extends State { title: 'Mute user', titleTextStyle: StreamChatTheme.of(context).textTheme.body, leading: Padding( - padding: const EdgeInsets.symmetric(horizontal: 16.0), + padding: const EdgeInsets.symmetric(horizontal: 22.0), child: StreamSvgIcon.mute( size: 24.0, color: StreamChatTheme.of(context) @@ -186,9 +188,9 @@ class _ChatInfoScreenState 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.pictures( - size: 32.0, + size: 36.0, color: StreamChatTheme.of(context).colorTheme.black.withOpacity(0.5), ), @@ -244,7 +246,7 @@ class _ChatInfoScreenState 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: 18.0), child: StreamSvgIcon.files( size: 32.0, color: @@ -283,7 +285,7 @@ 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.Icon_group( size: 24.0, color: @@ -313,7 +315,7 @@ class _ChatInfoScreenState extends State { color: StreamChatTheme.of(context).colorTheme.accentRed, ), leading: Padding( - padding: const EdgeInsets.symmetric(horizontal: 16.0), + padding: const EdgeInsets.symmetric(horizontal: 22.0), child: StreamSvgIcon.delete( color: StreamChatTheme.of(context).colorTheme.accentRed, size: 24.0,