Skip to content

Commit

Permalink
Increased the extent ratio for the slidable pane
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfteam committed Jan 9, 2022
1 parent 5b0f8f9 commit 294610b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/presentation/shared/utils/size_utils.dart
Expand Up @@ -82,11 +82,11 @@ class SizeUtils {
static double getExtentRatioForSlidablePane(BuildContext context) {
final size = MediaQuery.of(context).size;
if (size.width < 700) {
return 0.4;
return 0.6;
}

if (size.width < 1000) {
return 0.35;
return 0.4;
}

return 0.2;
Expand Down

0 comments on commit 294610b

Please sign in to comment.