TF-3408 Auto load more when user uses arrow down of keyboard

This commit is contained in:
dab246
2025-01-16 14:52:11 +07:00
committed by Dat H. Pham
parent b73784742a
commit aceaebe869
18 changed files with 134 additions and 301 deletions
@@ -8,7 +8,6 @@ class RichTextBuilder extends StatefulWidget {
final TextStyle styleWord;
final String? preMarkedText;
final bool ensureHighlightVisible;
final bool? softWrap;
const RichTextBuilder({
super.key,
@@ -18,7 +17,6 @@ class RichTextBuilder extends StatefulWidget {
required this.styleWord,
this.preMarkedText,
this.ensureHighlightVisible = false,
this.softWrap,
});
@override
@@ -65,7 +63,6 @@ class _RichTextBuilderState extends State<RichTextBuilder> with AutomaticKeepAli
),
style: widget.styleOrigin,
maxLines: 1,
softWrap: widget.softWrap,
overflow: TextOverflow.ellipsis
);