The keyboard hides my ListView (GroupedListView). I think it’s because of the Expanded Widget. My body: Column( children: [ Expanded( child: Padding( padding: const EdgeInsets.all(8.0), child: GroupedListView<dynamic, String>( controller: _scrollController, keyboardDismissBehavior: ScrollViewKeyboardDismissBehavior.onDrag, physics: const BouncingScrollPhysics( parent: ...
Home/expanded listview