update lists

This commit is contained in:
Salvatore Giordano
2022-04-28 14:53:29 +02:00
parent 18e69cd4bd
commit ccfbe367d0
@@ -308,7 +308,6 @@ class _NewChatScreenState extends State<NewChatScreen> {
? GestureDetector(
behavior: HitTestBehavior.opaque,
onPanDown: (_) => FocusScope.of(context).unfocus(),
child: UsersBloc(
child: StreamUserListView(
controller: userListController,
// groupAlphabetically:
@@ -338,8 +337,7 @@ class _NewChatScreenState extends State<NewChatScreen> {
return LayoutBuilder(
builder: (context, viewportConstraints) {
return SingleChildScrollView(
physics:
AlwaysScrollableScrollPhysics(),
physics: AlwaysScrollableScrollPhysics(),
child: ConstrainedBox(
constraints: BoxConstraints(
minHeight:
@@ -379,7 +377,6 @@ class _NewChatScreenState extends State<NewChatScreen> {
);
},
),
),
)
: FutureBuilder<bool>(
future: channel!.initialized,