TF-551 Fix mailbox scrollbar jumps and resizes in destination picker
This commit is contained in:
@@ -181,10 +181,9 @@ class DestinationPickerView extends GetWidget<DestinationPickerController>
|
||||
}
|
||||
|
||||
Widget _buildListMailbox(BuildContext context, MailboxActions? actions) {
|
||||
return ListView(
|
||||
primary: false,
|
||||
shrinkWrap: true,
|
||||
children: [
|
||||
return SingleChildScrollView(
|
||||
physics: const ClampingScrollPhysics(),
|
||||
child: Column(children: [
|
||||
if (actions == MailboxActions.moveEmail || actions == MailboxActions.move)
|
||||
_buildSearchBarWidget(context),
|
||||
_buildLoadingView(),
|
||||
@@ -205,7 +204,7 @@ class DestinationPickerView extends GetWidget<DestinationPickerController>
|
||||
? _buildMailboxCategory(context, MailboxCategories.folders, controller.folderRootNode, actions)
|
||||
: const SizedBox.shrink()),
|
||||
const SizedBox(height: 12),
|
||||
]
|
||||
])
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user