simple_url_preview
Flutter package to show url preview
Getting Started
This shows url preview of a URL.
Currently only supports Open Graph Protocol
Please use latest version of the package.
How to use ?
Add simple_url_preview to pubspec.yaml, and hit command 'flutter pub get'
dependencies:
...
simple_url_preview: ^0.1.10
1) Simple use:
SimpleUrlPreview(
url: 'https://pub.dev/',
),
2) Override preview height.(Default and minimum possible height is 150):
SimpleUrlPreview(
url: 'https://pub.dev/',
previewHeight: 200,
),
3) Override text color and background color:
Default textColor = Theme.of(context).accentColor
Default bgColor = Theme.of(context).primaryColor
SimpleUrlPreview(
url: 'https://pub.dev/',
textColor: Colors.white,
bgColor: Colors.red,
),
4) If you want closable preview (Click on x to close the preview.):
SimpleUrlPreview(
url: 'https://pub.dev/',
isClosable: true,
),
5) Override image loader color and title and description lines:
Default and maximum title lines = 2 and description lines = 3.
SimpleUrlPreview(
url: 'https://pub.dev/',
titleLines: 1,
descriptionLines: 2,
imageLoaderColor: Colors.white,
),
Contribution:
Would
Appreciate:
If you liked my work, show some
Also you can appreciate by
|
|