feat: user list

This commit is contained in:
xsahil03x
2020-11-17 23:32:16 +05:30
parent cd8ca90052
commit e5b25d8d06
5 changed files with 148 additions and 129 deletions
+13 -1
View File
@@ -464,7 +464,19 @@ class _NewChatScreenState extends State<NewChatScreen> {
style: TextStyle(color: Colors.black),
),
),
body: Container(),
body: UsersBloc(
child: UserListView(
pagination: PaginationParams(
limit: 25,
),
sort: [
SortOption(
'name',
direction: SortOption.ASC,
),
],
),
),
);
}
}