I want to show the ink splash animation on drag start. I've already tried wrapping the draggable in an inkwell but the effect doesn't show.
Scaffold(
appBar: AppBar(
title: Text('TES'),
),
body: Draggable(
child: Tile.draw(tileSize, val, 0.0, Theme.of(context).primaryColor),
feedback:
Tile.draw(tileSize, val, 20.0, Theme.of(context).primaryColor),
childWhenDragging: InkWell(
onTap: () => print('INK!'),
highlightColor: Colors.green,
splashColor: Colors.green,
customBorder: PolygonBorder(sides: 6, borderRadius: 6),
child:
Tile.draw(tileSize, val, 0.0, Theme.of(context).disabledColor),
),
));