feat: 专栏文本支持选择

This commit is contained in:
orz12
2024-08-25 13:49:26 +08:00
parent 9130fa6340
commit 7d352ac98d

View File

@@ -25,7 +25,8 @@ class HtmlRender extends StatelessWidget {
Widget build(BuildContext context) { Widget build(BuildContext context) {
double textScale = double textScale =
setting.get(SettingBoxKey.defaultTextScale, defaultValue: 1.0); setting.get(SettingBoxKey.defaultTextScale, defaultValue: 1.0);
return Html( return SelectionArea(
child: Html(
data: htmlContent, data: htmlContent,
onLinkTap: (String? url, Map<String, String> buildContext, attributes) {}, onLinkTap: (String? url, Map<String, String> buildContext, attributes) {},
extensions: [ extensions: [
@@ -124,6 +125,6 @@ class HtmlRender extends StatelessWidget {
margin: Margins.zero, margin: Margins.zero,
), ),
}, },
); ));
} }
} }