simple_in_app_webview 0.1.9 copy "simple_in_app_webview: ^0.1.9" to clipboard
simple_in_app_webview: ^0.1.9 copied to clipboard

The most simple to implement in app web view package

SimpleInAppWebView #

Android IOS
Requirement min 20+ min 9.0

Getting Started #

This package render a webview for both android and ios and it is easy to implement.For web application it redirects or open up a new tab instead.

What so special? #

This package is a plug and play, there are no neccessary code a webview from scratch. This package provide the feature of the following:

  1. Web a webpage from the assign url.
  2. Share url to 3rd party application.
  3. Option to open the url in the browser.

Demo:

demo

How to use? #

  1. Installation Add simple_in_app_webview to pubspec.yaml, and hit command flutter pub get. or run flutter pub add simple_in_app_webview

    dependencies:
      simple_in_app_webview: any
    
  2. Implementation Before implementing, make sure you uderstand the parameters.

   SimpleWebView({
    Key? key,
    @required this.url,
    @required this.title,
    @required this.message,
    this.isUrlCentered = false,
    this.fontColour = Colors.white,
    this.appBarColour = Colors.white,
    this.shareButtonColour = Colors.black,
    this.loadingIndicatorColour = Colors.black,
  }) : super(key: key);
  import 'package:simple_in_app_webview/simple_in_app_webview.dart';

Example of calling the widget:

  SimpleWebView(
    title: 'My github profile',
    message: 'This is the description',
    url: 'https://github.com/johnmelodyme',
    appBarColour: Colors.purple,
    isUrlCentered: false,
    fontColour: Colors.white,
    loadingIndicatorColour: Colors.purple,
    shareButtonColour: Colors.white,
  )

Contribution: #

I Would ❤️ to see any contributions. If you do liked my work, show some ❤️ by ⭐ repo.

Also you can appreciate me by buy me a coffee:
Buy Me A Coffee

3
likes
90
points
50
downloads

Publisher

unverified uploader

Weekly Downloads

The most simple to implement in app web view package

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_share, url_launcher, webview_flutter

More

Packages that depend on simple_in_app_webview