url_launcher_plus 1.2.0 copy "url_launcher_plus: ^1.2.0" to clipboard
url_launcher_plus: ^1.2.0 copied to clipboard

Customizable url launcher plus with AppBar for navigation and also a refresh button available

Flutter Url Launcher Plus #

  • Customizable url launcher with AppBar for navigation and also a refresh button available

Supported Devices #

  • Android
  • IOS

Installation #

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  url_launcher_plus:
  1. minSdkVersion >= 19
    defaultConfig {
        minSdkVersion 19
        ...
    }
  1. Import the package and use it in your Flutter App.
import 'package:flutter_gearbox/url_launcher_plus.dart';

Example #

  void navigate(BuildContext context) {
    Navigator.push(
      UrlLauncher(
          launchUrl: "https://google.com/",
          backgroundColor: Colors.blue,
          blockUrls: ['blockThisSite.com1', 'blockThisSite.com2'],
          onClose: () {...},
          iconColor: Colors.white,
          onRefresh: () {...},
          onProgress: () {...},
          onUrlChange: () {...},
          onPageStarted: () {...},
          onPageFinished: () {...},
          onNavigationRequest: () {...},
          onWebResourceError: () {...},
    ));
  }

Next Goals #

  • ❌ More features to be added

Contributions #

If you find a bug or want a feature, but don't know how to fix/implement it, please fill an issue.

If you fixed a bug or implemented a feature, please send a pull request.

4
likes
140
points
179
downloads

Publisher

unverified uploader

Weekly Downloads

Customizable url launcher plus with AppBar for navigation and also a refresh button available

Repository (GitHub)
Contributing

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, webview_flutter

More

Packages that depend on url_launcher_plus