flutter_linkify
flutter_linkify copied to clipboard
Detect links without https:// or www. Only detecting the top level domain (.com,.org,.etc)
Maybe there is a parameter that I couldn't find to allow this, but would be nice if there is a way to detect a link only by the .com,.org,.etc. Maybe a new parameter where you can make a list like ['com','org,'us','shop'] so if a word end in one of them like "github.com" convert it in a link.
You can enable looseUrl by passing it in options
options: LinkifyOptions(looseUrl: true)
Perhaps this should get added to the main Readme?
It should definitely be added to the Readme, an important parameter