[Flutter] InkWell on image, 잉크웰을 이미지 위에서 작동시키기
return new Stack(children: [ new Positioned.fill( bottom: 0.0, child: new GridTile( footer: new GridTileBar( title: new Text(s.displayName), subtitle: new Text(s.gameName), backgroundColor: Colors.black45, trailing: new Icon( Icons.launch, color: Colors.white, ), ), child: new Image.network(s.imageSrc, fit: BoxFit.cover)), ), new Positioned.fill( child: new Material( color: Colors.transparent, c..