mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-24 09:46:42 +00:00
fix(ui): Server type selector had inkwell behind the card
This commit is contained in:
parent
c6c26eec83
commit
657ff44979
|
@ -247,11 +247,12 @@ class SelectTypePage extends StatelessWidget {
|
||||||
children: [
|
children: [
|
||||||
SizedBox(
|
SizedBox(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
|
child: Card(
|
||||||
|
clipBehavior: Clip.antiAlias,
|
||||||
child: InkWell(
|
child: InkWell(
|
||||||
onTap: () {
|
onTap: () {
|
||||||
serverInstallationCubit.setServerType(type);
|
serverInstallationCubit.setServerType(type);
|
||||||
},
|
},
|
||||||
child: Card(
|
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(16.0),
|
padding: const EdgeInsets.all(16.0),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
|
Loading…
Reference in a new issue