suport "open with" for files

This commit is contained in:
Fabian Freund
2025-02-21 11:56:47 +01:00
parent 1b2e386541
commit 4ba0209abd
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
final _domainRegex = RegExp(r'\.[a-zA-Z]{2,}$');
const _supportedSchemes = {'https', 'http', 'ftp', 'file', 'about'};
const _supportedSchemes = {'https', 'http', 'ftp', 'file', 'content', 'about'};
Uri? tryParseUrl(String? input, {bool eagerParsing = false}) {
if (input != null) {