return Center(
child: Material(
color: Colors.white,
child: Container(
width: 300,
height: 300,
child: InkWell(
splashColor: Colors.red,
onTap: () {},
child: Column(
children: [
Ink.image(
image: NetworkImage('url'),
width: 100,
height: 100,
fit: BoxFit.fill,
),
Text(
'data',
style: TextStyle(backgroundColor: Colors.blue[200]),
),
],
),
),
),
),
);