I have this container:
new Container( width: 500.0, padding: new EdgeInsets.fromLTRB(20.0, 40.0, 20.0, 40.0), color: Colors.green, child: new C
If you want a simple tap event then you can do it by GestureDetector
GestureDetector
GestureDetector( onTap: (){ print("Container clicked"); }, child: new Container(...) );
If you want ripple animation on tap event then use InkWell
InkWell
InkWell( onTap: (){ print("Container clicked"); }, child: new Container(...) );