mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-02-02 14:16:58 +00:00
Fix clipping on Cards with InkResponse
This commit is contained in:
parent
469fbde6c4
commit
6e9bde827a
|
@ -144,6 +144,7 @@ class _Card extends StatelessWidget {
|
|||
|
||||
@override
|
||||
Widget build(final BuildContext context) => Card(
|
||||
clipBehavior: Clip.antiAlias,
|
||||
child: InkResponse(
|
||||
highlightShape: BoxShape.rectangle,
|
||||
onTap: onTap,
|
||||
|
|
|
@ -42,6 +42,7 @@ class StorageCard extends StatelessWidget {
|
|||
}
|
||||
|
||||
return Card(
|
||||
clipBehavior: Clip.antiAlias,
|
||||
child: InkResponse(
|
||||
highlightShape: BoxShape.rectangle,
|
||||
onTap: () => Navigator.of(context).push(
|
||||
|
|
Loading…
Reference in a new issue