From 00e211f9fe1967f1c271ea701f330b575e33f0cc Mon Sep 17 00:00:00 2001 From: Deven Joshi Date: Fri, 1 Jan 2021 18:59:38 +0530 Subject: [PATCH] fix: Fixed separator width --- lib/src/option_list_tile.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/option_list_tile.dart b/lib/src/option_list_tile.dart index eb6e0ab7..1b87c9d7 100644 --- a/lib/src/option_list_tile.dart +++ b/lib/src/option_list_tile.dart @@ -30,7 +30,7 @@ class OptionListTile extends StatelessWidget { Container( color: separatorColor ?? StreamChatTheme.of(context).colorTheme.greyGainsboro, - height: 2.0, + height: 1.0, ), Material( color: tileColor ?? StreamChatTheme.of(context).colorTheme.white,