fwfh_url_launcher 0.6.0 copy "fwfh_url_launcher: ^0.6.0" to clipboard
fwfh_url_launcher: ^0.6.0 copied to clipboard

outdated

WidgetFactory extension to launch A tag via url_launcher plugin.

UrlLauncherFactory #

Flutter codecov Pub

WidgetFactory extension to launch A tag via url_launcher plugin. This is a companion add-on for flutter_widget_from_html_core package.

Getting Started #

Add this to your app's pubspec.yaml file:

dependencies:
  flutter_widget_from_html_core: any
  fwfh_url_launcher: ^0.6.0

Usage #

Then use HtmlWidget with a custom factory:

import 'package:flutter_widget_from_html_core/flutter_widget_from_html_core.dart';
import 'package:fwfh_url_launcher/fwfh_url_launcher.dart';

// ...

HtmlWidget(
  html,
  factoryBuilder: () => MyWidgetFactory(),
)

// ...

class MyWidgetFactory extends WidgetFactory with UrlLauncherFactory {
}