fix: text selectable

This commit is contained in:
Simon Ding
2024-11-04 18:37:44 +08:00
parent 62417727f9
commit 36b72e6461
5 changed files with 183 additions and 175 deletions

View File

@@ -23,7 +23,8 @@ class _SystemPageState extends ConsumerState<SystemPage> {
Widget build(BuildContext context) {
final logs = ref.watch(logFileDataProvider);
final about = ref.watch(aboutDataProvider);
return SingleChildScrollView(
return SelectionArea(
child: SingleChildScrollView(
child: Column(
children: [
ExpansionTile(
@@ -190,6 +191,6 @@ class _SystemPageState extends ConsumerState<SystemPage> {
)
],
),
);
));
}
}