From 657ff44979ac3fe1001ef782577f9c787f2bed33 Mon Sep 17 00:00:00 2001 From: Inex Code Date: Fri, 1 Nov 2024 15:26:55 +0300 Subject: [PATCH] fix(ui): Server type selector had inkwell behind the card --- .../pages/setup/initializing/server_type_picker.dart | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/ui/pages/setup/initializing/server_type_picker.dart b/lib/ui/pages/setup/initializing/server_type_picker.dart index a56c9aec..7d30caf5 100644 --- a/lib/ui/pages/setup/initializing/server_type_picker.dart +++ b/lib/ui/pages/setup/initializing/server_type_picker.dart @@ -247,11 +247,12 @@ class SelectTypePage extends StatelessWidget { children: [ SizedBox( width: double.infinity, - child: InkWell( - onTap: () { - serverInstallationCubit.setServerType(type); - }, - child: Card( + child: Card( + clipBehavior: Clip.antiAlias, + child: InkWell( + onTap: () { + serverInstallationCubit.setServerType(type); + }, child: Padding( padding: const EdgeInsets.all(16.0), child: Column(