Нажатие на контейнер запускает обработчик onTap()
но не показывает никакого эффекта всплеска чернил.
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: new InkWell(
onTap: (){print("tapped");},
child: new Container(
width: 100.0,
height: 100.0,
color: Colors.orange,
),
),
),
);
}
}
Я попытался положить InkWell
внутри Container
но тщетно.