Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. flutter:
  2. assets:
  3. - images/
  4.  
  5. Image.asset("images/myimage.jpg") // again, this in an example
  6.  
  7. Material(
  8. child: Stack(
  9. children: <Widget>[
  10. InkWell(
  11. onTap: () {}, // The ripple only shows up if you have a onTap method.
  12. child: Container(
  13. height: 300, // 300 is a random value but has bigger height than the image itself.
  14. child: Image.asset("images/myimage.jpg"),
  15. ),
  16. ),
  17. ],
  18. ),
  19. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement