From 096796f9ddcaee5cbe8c27517794203ea3c934d9 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 3 Aug 2023 14:20:03 +0300 Subject: [PATCH] Adjust document grid to fit --- lib/ui/app/dashed_rect.dart | 2 +- lib/ui/app/document_grid.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ui/app/dashed_rect.dart b/lib/ui/app/dashed_rect.dart index cf5f04365..566b0e62a 100644 --- a/lib/ui/app/dashed_rect.dart +++ b/lib/ui/app/dashed_rect.dart @@ -13,7 +13,7 @@ class DashedRect extends StatelessWidget { @override Widget build(BuildContext context) { return Container( - height: 100, + height: 75, width: double.infinity, child: Padding( padding: EdgeInsets.all(strokeWidth / 2), diff --git a/lib/ui/app/document_grid.dart b/lib/ui/app/document_grid.dart index c5d7218b1..43dbc52eb 100644 --- a/lib/ui/app/document_grid.dart +++ b/lib/ui/app/document_grid.dart @@ -122,7 +122,7 @@ class _DocumentGridState extends State { child: Stack( children: [ Container( - height: 100, + height: 75, width: double.infinity, child: Center( child: Text(localization.dropFilesHere),