fix(ui): Server type selector had inkwell behind the card

This commit is contained in:
Inex Code 2024-11-01 15:26:55 +03:00
parent c6c26eec83
commit 657ff44979

View file

@ -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(