13
InkWell tidak menunjukkan efek riak
Mengetuk wadah akan memicu onTap()penangan tetapi tidak menunjukkan efek percikan tinta apa pun. 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, …