flyerhq / flutter_link_previewer

Customizable link and URL preview extracted from the provided text with the ability to render from the cache. Ideal for chat applications.
MIT License
72 stars 75 forks source link

Support for custom url handling logic #12

Closed saileshbro closed 3 years ago

saileshbro commented 3 years ago

Hi, it would be awesome if we could provide our custom URL handler.

Proposed change

 LinkPreview(
    ...
    onLinkPressed:(url){
        if(url!=null){
            // handle url here
        }
    }
    text: widget.body,
    ...
  )
demchenkoalex commented 3 years ago

Hi @saileshbro released in v2.0.1. Thanks for the PR!