Guest User

Untitled

a guest
Nov 26th, 2020
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. Container(
  2. color: Colors.white,
  3. child: Column(
  4. children: [
  5. Padding(
  6. padding: EdgeInsets.fromLTRB(16, 4, 12, 4),
  7. child: Row(
  8. children: [
  9. Container(
  10. decoration: BoxDecoration(
  11. color: Colors.red,
  12. borderRadius: BorderRadius.all(Radius.circular(7.0)),
  13. ),
  14. child: Padding(
  15. padding: EdgeInsets.all(5.0),
  16. child: Icon(Icons.home),
  17. ),
  18. ),
  19. Container(
  20. padding: EdgeInsets.symmetric(horizontal: 16.0),
  21. width: MediaQuery.of(context).size.width * 0.5,
  22. child: Text(
  23. 'Some reeeeally long long text',
  24. overflow: TextOverflow.ellipsis,
  25. ),
  26. ),
  27. const Spacer(),
  28. Padding(
  29. padding: EdgeInsets.only(right: 8),
  30. child: Text('Some extra text'),
  31. ),
  32. Icon(Icons.arrow_forward_ios),
  33. ],
  34. ),
  35. ),
  36. ],
  37. ),
  38. ),
Advertisement
Add Comment
Please, Sign In to add comment