simple_link_preview 2.1.0
simple_link_preview: ^2.1.0 copied to clipboard
Lightweight link previews for HTML metadata, direct images, and other web content types.
example/simple_link_preview_example.dart
import 'package:simple_link_preview/simple_link_preview.dart';
void main() async {
final preview = await SimpleLinkPreview.getPreview('https://pub.dev/');
// Show the fetched preview in this command-line example / Hiển thị preview đã tải trong ví dụ dòng lệnh này.
// ignore: avoid_print
print('Link preview: $preview');
}