Skip to content

Commit b7db4b2

Browse files
committed
fix(fsrs): fix text overflow
Signed-off-by: OctagonalStar <[email protected]>
1 parent 68ce251 commit b7db4b2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
- 修复了FSRS算法对已经过期的单词无法计数的问题
2121
- 修复了日志中FSRS信息输出错误的问题
2222
- 修复了新用户无法进入的问题
23+
- 修复了FSRS复习界面中,“下一题”动画期间文字溢出的问题
2324

2425
## v0.1.11 - 2025-11-28 - (000111)
2526

lib/sub_pages_builder/learning_pages/fsrs_pages.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ class _FSRSReviewCardPage extends State<FSRSReviewCardPage> {
310310
widget.controller.nextPage(duration: Duration(milliseconds: 500), curve: StaticsVar.curve);
311311
},
312312
icon: Icon(Icons.arrow_downward),
313-
label: Text("下一题"),
313+
label: FittedBox(fit: BoxFit.contain, child: Text("下一题")),
314314
)
315315
],
316316
);

0 commit comments

Comments
 (0)