Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. Container(
  2. color: Color(0xFFeeeeee),
  3. child: ListView(
  4. children: <Widget>[
  5. Card(
  6. elevation: 4.0,
  7. child: Container(
  8. padding: EdgeInsets.all(18.0),
  9. child: Column(
  10. children: <Widget>[
  11. Row(
  12. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  13. children: <Widget>[
  14. Container(
  15. child: Text("Mercadoria - Tomate"),
  16. ),
  17. Text("Total")
  18. ]),
  19. Row(
  20. mainAxisAlignment: MainAxisAlignment.end,
  21. children: <Widget>[
  22. Padding(
  23. padding: const EdgeInsets.only(top: 8.0),
  24. child: Text(
  25. "R\$ 12,30",
  26. style: TextStyle(fontWeight: FontWeight.bold),
  27. textAlign: TextAlign.left,
  28. ),
  29. ),
  30. ],
  31. ),
  32. Divider(
  33. color: Colors.black,
  34. ),
  35. Row(
  36. mainAxisAlignment: MainAxisAlignment.end,
  37. children: <Widget>[
  38. Padding(
  39. padding: const EdgeInsets.only(top: 8.0),
  40. child: InkWell(
  41. child: Text(
  42. "DETALHES",
  43. style: TextStyle(
  44. color: primaryColorBlue,
  45. fontWeight: FontWeight.w500),
  46. textAlign: TextAlign.left,
  47. ),
  48. onTap: () {},
  49. ),
  50. ),
  51. ],
  52. ),
  53. ],
  54. ),
  55. ),
  56. ),
  57. ],
  58. ),
  59. ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement