sur950 / any_link_preview

A flutter Plugin/Package to show the preview of any web link that starts with HTTP/HTTPS. Mostly useful for application that had chat.
MIT License
70 stars 70 forks source link

It looks like "Quoted text" in the link is not handled #74

Open tpalgut opened 2 months ago

tpalgut commented 2 months ago

Just started using this package today. It is nice. I found one url where the preview body stops displaying text when it reaches quoted text in the source. The source text from the link is 'The "flying cigar" with a ...' The preview body just displays 'The '

using any_link_preview: ^3.0.2

AnyLinkPreview( link: 'https://ebird.org/species/chiswi', displayDirection: UIDirection.uiDirectionHorizontal, cache: const Duration(days: 7), backgroundColor: Colors.grey[300], errorWidget: Container( color: Colors.grey[300], child: const Text('Oops! Error loading preview'), ), ),

Screenshot 2024-06-25 at 1 10 24 PM