Advertisement
Guest User

Untitled

a guest
Aug 18th, 2022
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. Column(
  2. children: [
  3. Align(
  4. alignment: Alignment.topLeft,
  5. child: Text(
  6. widget.title,
  7. style: TextStyles.regularStyle.copyWith(
  8. color: const Color(0xFF1A1A1A),
  9. ),
  10. maxLines: isExpanded ? 11 : 4,
  11. softWrap: true,
  12. // overflow: TextOverflow.fade,
  13. ),
  14. ),
  15. const SizedBox(
  16. height: 4,
  17. ),
  18. widget.title.length < 197
  19. ? SizedBox()
  20. : InkWell(
  21. onTap: () {
  22. setState(() {
  23. isExpanded = !isExpanded;
  24. });
  25. },
  26. child: Align(
  27. alignment: Alignment.topLeft,
  28. child: Text(
  29. isExpanded == false
  30. ? 'Показать полностью...'
  31. : 'Show less',
  32. style: TextStyles.mediumStyle.copyWith(
  33. fontSize: 14,
  34. color: const Color(0xff3D3DD8),
  35. ),
  36. maxLines: 1,
  37. ),
  38. ),
  39. ),
  40. ],
  41. ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement