long press copy link text

This commit is contained in:
Fabian Freund
2026-03-13 03:44:47 +01:00
parent 4325839503
commit 85b08667ae
7 changed files with 83 additions and 5 deletions
@@ -968,8 +968,9 @@ sealed class HitResult {}
/// Default type if we're unable to match the type to anything. It may or may not have a src.
class UnknownHitResult extends HitResult {
final String src;
final String? linkText;
UnknownHitResult(this.src);
UnknownHitResult(this.src, {this.linkText});
}
/// If the HTML element was of type 'HTMLImageElement'.