fix: revert to invisible ink wells

pull/447/head
Allison Ryan 3 years ago
parent 5e8ac20d37
commit 1e2b32cb3d

@ -30,8 +30,10 @@ class PinballButton extends StatelessWidget {
),
),
child: Center(
child: GestureDetector(
child: InkWell(
onTap: onTap,
highlightColor: PinballColors.transparent,
splashColor: PinballColors.transparent,
child: Padding(
padding: const EdgeInsets.symmetric(
horizontal: 32,

@ -53,8 +53,10 @@ class PinballDpadButton extends StatelessWidget {
Widget build(BuildContext context) {
return Material(
color: PinballColors.transparent,
child: GestureDetector(
child: InkWell(
onTap: onTap,
highlightColor: PinballColors.transparent,
splashColor: PinballColors.transparent,
child: Image.asset(
direction.toAsset(),
width: 60,

Loading…
Cancel
Save