chore: require always two lines (#4068)

This commit is contained in:
Richard Shiue 2023-12-02 21:33:15 +08:00 committed by GitHub
parent 415f121720
commit bb4b987681
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,10 +97,20 @@ class _MobileRecentViewState extends State<MobileRecentView> {
Expanded(
child: Padding(
padding: const EdgeInsets.fromLTRB(8, 18, 8, 2),
child: FlowyText.medium(
view.name,
maxLines: 2,
overflow: TextOverflow.ellipsis,
// hack: minLines currently not supported in Text widget.
// https://github.com/flutter/flutter/issues/31134
child: Stack(
children: [
FlowyText(
view.name,
maxLines: 2,
overflow: TextOverflow.ellipsis,
),
const FlowyText(
"\n\n",
maxLines: 2,
),
],
),
),
),