[UserListView] Fix separator color
Signed-off-by: Sahil Kumar <[email protected]>
This commit is contained in:
@@ -478,9 +478,7 @@ class _UserListViewState extends State<UserListView>
|
|||||||
Widget _separatorBuilder(context, i) {
|
Widget _separatorBuilder(context, i) {
|
||||||
return Container(
|
return Container(
|
||||||
height: 1,
|
height: 1,
|
||||||
color: Theme.of(context).brightness == Brightness.dark
|
color: StreamChatTheme.of(context).colorTheme.greyWhisper,
|
||||||
? StreamChatTheme.of(context).colorTheme.white.withOpacity(0.1)
|
|
||||||
: StreamChatTheme.of(context).colorTheme.black.withOpacity(0.1),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user