Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

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,
    ),
  ),
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #inkwell #image #flutter #working
ADD COMMENT
Topic
Name
7+4 =