Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Column(
- children: [
- Align(
- alignment: Alignment.topLeft,
- child: Text(
- widget.title,
- style: TextStyles.regularStyle.copyWith(
- color: const Color(0xFF1A1A1A),
- ),
- maxLines: isExpanded ? 11 : 4,
- softWrap: true,
- // overflow: TextOverflow.fade,
- ),
- ),
- const SizedBox(
- height: 4,
- ),
- widget.title.length < 197
- ? SizedBox()
- : InkWell(
- onTap: () {
- setState(() {
- isExpanded = !isExpanded;
- });
- },
- child: Align(
- alignment: Alignment.topLeft,
- child: Text(
- isExpanded == false
- ? 'Показать полностью...'
- : 'Show less',
- style: TextStyles.mediumStyle.copyWith(
- fontSize: 14,
- color: const Color(0xff3D3DD8),
- ),
- maxLines: 1,
- ),
- ),
- ),
- ],
- ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement