fix: revert to invisible ink wells (#447)

pull/451/head
Allison Ryan 2 years ago committed by GitHub
parent 98ac639493
commit 394e1fe724
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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