simple_url_preview

Creator: coderz1093

Last updated:

Add to Cart

Description:

simple url preview

simple_url_preview #



Flutter package to show url preview

Getting Started #
This shows url preview of a URL. (Now migrated to null-safety).
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: ^3.0.1
copied to clipboard
1) Simple use:
SimpleUrlPreview(
url: 'https://pub.dev/',
),
copied to clipboard
2) Override preview height, padding.(Default and minimum possible height is 130):
SimpleUrlPreview(
url: 'https://pub.dev/',
previewHeight: 200,
previewContainerPadding: EdgeInsets.all(10),
),
copied to clipboard
3) Override background color:
Default bgColor = Theme.of(context).primaryColor
SimpleUrlPreview(
url: 'https://pub.dev/',
bgColor: Colors.red,
),
copied to clipboard
4) Override title, description, and site style:
Default titleStyle = TextStyle(
fontWeight: FontWeight.bold,
fontSize: 16,
color: Theme.of(context).accentColor
)
Default descriptionStyle = TextStyle(
fontSize: 14,
color: Theme.of(context).accentColor
)
Default siteNameStyle = TextStyle(
fontSize: 14,
color: Theme.of(context).accentColor
)
SimpleUrlPreview(
url: 'https://pub.dev/',
titleStyle: TextStyle(
fontSize: 16,
fontWeight: FontWeight.bold,
color: Colors.red,
),
descriptionStyle: TextStyle(
fontSize: 14,
color: Theme.of(context).primaryColor,
),
siteNameStyle: TextStyle(
fontSize: 14,
color: Theme.of(context).primaryColor,
),
),
copied to clipboard
5) If you want closable preview (Click on x to close the preview.):
SimpleUrlPreview(
url: 'https://pub.dev/',
isClosable: true,
),
copied to clipboard
6) 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,
),
copied to clipboard
7) Override onTap callback of the URL preview:
By Default, will open URL in default browser.
SimpleUrlPreview(
url: 'https://pub.dev/',
onTap: () => print('Hello Flutter URL Preview'),
),
copied to clipboard
Contribution: #
Would ❤️ to see any contributions.
Appreciate: #
If you liked my work, show some ❤️ by ⭐ repo.
Also you can appreciate by

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.