inkwell not showing splash code example
Example 1: inkwell in image flutter not working
body: new Center(
child: new Container(
child: new Material(
child: new InkWell(
onTap: (){print("tapped");},
child: new Container(
width: 100.0,
height: 100.0,
),
),
color: Colors.transparent,
),
color: Colors.orange,
),
),
Example 2: inkwell not showing splash
InkWell(
onTap: () {}, // needed
child: Ink( // use Ink
width: 200,
height: 200,
color: Colors.blue,
),
)