Guest User

Untitled

a guest
Jun 24th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. new Material(
  2. elevation: 2.0,
  3. child: new Opacity(
  4. opacity: 0.3,
  5. child: new Container(
  6. padding: new EdgeInsets.all(20.0),
  7. child: new Image.asset("assets/<your icon>", fit: BoxFit.cover, color: Colors.grey),
  8. decoration: new BoxDecoration(
  9. border: new Border.all(
  10. width: 2.0, color: const Color(0x40000000)),
  11. borderRadius: const BorderRadius.all(const Radius.circular(5.0)
  12. )
  13. )
  14. )
  15. )
  16. );
Add Comment
Please, Sign In to add comment