Skip to content

Commit

Permalink
fix(SettingEditor): 修复日志视图不可滚动的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
wonder-light committed Jan 15, 2025
1 parent 8a30d60 commit e3fedbf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/components/setting/setting_editor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,9 @@ class SettingEditorState extends State<SettingEditor> {
const Padding(padding: kRightPadding16),
],
),
body: Text.rich(TextSpan(text: str.toString())),
body: SingleChildScrollView(
child: Text.rich(TextSpan(text: str.toString())),
)
);
}

Expand Down

0 comments on commit e3fedbf

Please sign in to comment.