From 48cbe17ccddc6d952e74dff0382c33e3fe1a661a Mon Sep 17 00:00:00 2001 From: ashilkn Date: Mon, 15 Apr 2024 10:40:10 +0530 Subject: [PATCH] [mob] Make the borders of settings drawer not-round --- mobile/lib/ui/tabs/home_widget.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/mobile/lib/ui/tabs/home_widget.dart b/mobile/lib/ui/tabs/home_widget.dart index 802b40be89..6745aaaa6f 100644 --- a/mobile/lib/ui/tabs/home_widget.dart +++ b/mobile/lib/ui/tabs/home_widget.dart @@ -325,6 +325,7 @@ class _HomeWidgetState extends State { constraints: const BoxConstraints(maxWidth: 430), child: Drawer( width: double.infinity, + shape: const RoundedRectangleBorder(), child: _settingsPage, ), )