Is there any way to increase the time of splashcolor filling activity of InkWell? Default time is too slow for my work.
Here is my code
Padding(
padding: EdgeInsets.all(25),
child: Container(
child: Stack(
children: [
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Container(
padding: EdgeInsets.all(5),
height: 120,
width: 800,
decoration: BoxDecoration(
color: Colors.yellow,
borderRadius: BorderRadius.all(
Radius.circular(5),
),
),
child: Container(
height: 120,
width: 800,
color: Colors.teal,
),
)
],
),
Positioned.fill(
child: Material(
color: Colors.transparent,
child: InkWell(
splashColor: Colors.red,
onTap: () {},
),
),
),
],
),
),
)