From 97c2a63387f21278092d12163f72db83f0e6e3ed Mon Sep 17 00:00:00 2001 From: Moe <moe@chocola.dev> Date: Sat, 21 May 2022 23:20:20 +0700 Subject: [PATCH] Fix overlapping on sheet --- lib/components/product_detail.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/product_detail.dart b/lib/components/product_detail.dart index 3ebec3a..d827b7f 100644 --- a/lib/components/product_detail.dart +++ b/lib/components/product_detail.dart @@ -23,7 +23,7 @@ Widget productDetail(context, id) { child: DraggableScrollableSheet( initialChildSize: 0.7, minChildSize: 0.5, - maxChildSize: 1, + maxChildSize: 0.965, builder: (_, controller) => FutureBuilder<dynamic>( future: getProduct(id), builder: (context, snapshot) {