Guest User

Untitled

a guest
Jul 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. Widget build(BuildContext context) {
  2. return Container(
  3. margin: EdgeInsets.symmetric(vertical: 8.0, horizontal: 16.0),
  4. child: Material(
  5. shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(4.0)),
  6. elevation: 6.0,
  7. shadowColor: Colors.grey[50],
  8. child: InkWell(
  9. onTap: () {},
  10. child: Container(
  11. decoration: BoxDecoration(
  12. gradient: LinearGradient(
  13. begin: AlignmentDirectional.bottomStart,
  14. end: AlignmentDirectional.topEnd,
  15. colors: [
  16. Colors.yellow[800],
  17. Colors.yellow[700],
  18. ],
  19. ),
  20. ),
  21. padding: EdgeInsets.all(16.0),
  22. child: Text(
  23. widget.title,
  24. style: TextStyle(
  25. fontSize: 20.0,
  26. color: Colors.white,
  27. ),
  28. ),
  29. ),
  30. ),
  31. ),
  32. );
  33. }
Add Comment
Please, Sign In to add comment