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: [ children: [
SizedBox( SizedBox(
width: double.infinity, width: double.infinity,
child: InkWell( child: Card(
onTap: () { clipBehavior: Clip.antiAlias,
serverInstallationCubit.setServerType(type); child: InkWell(
}, onTap: () {
child: Card( serverInstallationCubit.setServerType(type);
},
child: Padding( child: Padding(
padding: const EdgeInsets.all(16.0), padding: const EdgeInsets.all(16.0),
child: Column( child: Column(