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( ? GestureDetector(
behavior: HitTestBehavior.opaque, behavior: HitTestBehavior.opaque,
onPanDown: (_) => FocusScope.of(context).unfocus(), onPanDown: (_) => FocusScope.of(context).unfocus(),
child: UsersBloc(
child: StreamUserListView( child: StreamUserListView(
controller: userListController, controller: userListController,
// groupAlphabetically: // groupAlphabetically:
@@ -338,8 +337,7 @@ class _NewChatScreenState extends State<NewChatScreen> {
return LayoutBuilder( return LayoutBuilder(
builder: (context, viewportConstraints) { builder: (context, viewportConstraints) {
return SingleChildScrollView( return SingleChildScrollView(
physics: physics: AlwaysScrollableScrollPhysics(),
AlwaysScrollableScrollPhysics(),
child: ConstrainedBox( child: ConstrainedBox(
constraints: BoxConstraints( constraints: BoxConstraints(
minHeight: minHeight:
@@ -379,7 +377,6 @@ class _NewChatScreenState extends State<NewChatScreen> {
); );
}, },
), ),
),
) )
: FutureBuilder<bool>( : FutureBuilder<bool>(
future: channel!.initialized, future: channel!.initialized,