applied requested changes in the review

This commit is contained in:
ryg-git 2021-02-06 22:53:49 +05:30
parent b9ddb23d23
commit d21bbbe066
1 changed files with 4 additions and 4 deletions

View File

@ -433,12 +433,12 @@ class PostWidget extends HookWidget {
);
final tp = TextPainter(
text: span,
maxLines: 20,
maxLines: 10,
textDirection: Directionality.of(context),
)..layout(maxWidth: constraints.maxWidth - 20);
if (tp.didExceedMaxLines) {
return Container(
return ConstrainedBox(
constraints: BoxConstraints(maxHeight: tp.height),
child: Stack(
alignment: Alignment.bottomCenter,
@ -454,13 +454,13 @@ class PostWidget extends HookWidget {
),
),
Container(
height: tp.preferredLineHeight * 4,
height: tp.preferredLineHeight * 2.5,
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [
theme.cardColor.withAlpha(128),
theme.cardColor.withAlpha(0),
theme.cardColor,
],
),