Skip to content

Commit

Permalink
filter bottom sheet height fix (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkieres authored Jul 2, 2023
1 parent e028ade commit f5c5c00
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,8 @@ class _AppBarState extends State<_AppBar> {
),
context: context,
builder: (context) {
final pageHeight = MediaQuery.of(context).size.height;
return FractionallySizedBox(
heightFactor: _requiredFiltersBottomSheetHeight / pageHeight,
return SizedBox(
height: _requiredFiltersBottomSheetHeight,
child: CollectionsFilterPanel(viewModel: widget.viewModel),
);
},
Expand Down

0 comments on commit f5c5c00

Please sign in to comment.