{"id":29360271,"url":"https://github.com/shahxad-akram/webview_flutter_plus","last_synced_at":"2025-07-09T07:12:26.609Z","repository":{"id":37711297,"uuid":"268035746","full_name":"Shahxad-Akram/webview_flutter_plus","owner":"Shahxad-Akram","description":"An extension of webview_flutter to load HTML,CSS and Javascript even from Assets or Strings.","archived":false,"fork":false,"pushed_at":"2025-06-05T22:47:09.000Z","size":380,"stargazers_count":71,"open_issues_count":36,"forks_count":51,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-05T23:28:53.881Z","etag":null,"topics":["css","flutter","html","javascript","webview"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/webview_flutter_plus","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Shahxad-Akram.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-05-30T08:03:01.000Z","updated_at":"2025-06-05T22:47:11.000Z","dependencies_parsed_at":"2023-12-17T02:31:11.229Z","dependency_job_id":"5f66312d-cbd6-45c9-82d0-88cc797ead94","html_url":"https://github.com/Shahxad-Akram/webview_flutter_plus","commit_stats":{"total_commits":10,"total_committers":1,"mean_commits":10.0,"dds":0.0,"last_synced_commit":"9c192a18c7008bc50faca0fe3813114875e8f05a"},"previous_names":["shahxad-akram/webview_flutter_plus","shah-xad/webview_flutter_plus"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Shahxad-Akram/webview_flutter_plus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shahxad-Akram%2Fwebview_flutter_plus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shahxad-Akram%2Fwebview_flutter_plus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shahxad-Akram%2Fwebview_flutter_plus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shahxad-Akram%2Fwebview_flutter_plus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Shahxad-Akram","download_url":"https://codeload.github.com/Shahxad-Akram/webview_flutter_plus/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Shahxad-Akram%2Fwebview_flutter_plus/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264411189,"owners_count":23603807,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","flutter","html","javascript","webview"],"created_at":"2025-07-09T07:12:25.803Z","updated_at":"2025-07-09T07:12:26.602Z","avatar_url":"https://github.com/Shahxad-Akram.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# webview_flutter_plus\n\n# Contents\n- [webview\\_flutter\\_plus](#webview_flutter_plus)\n- [Contents](#contents)\n- [About](#about)\n- [Features](#features)\n- [How to use?](#how-to-use)\n    - [Android](#android)\n    - [iOS](#ios)\n- [Example](#example)\n    - [Please check `example/lib/main.dart`](#please-check-examplelibmaindart)\n\n# About\nwebview_flutter_plus is an extension of [webview_flutter](https://pub.dartlang.org/packages/webview_flutter). This package helps to load Local HTML, CSS and Javascript content from Assets or Strings via a local server. This inherits all features of webview_flutter with minor API changes in `WebViewController`.\n\nDo check [**flutter_tex**](https://pub.dartlang.org/packages/flutter_tex) an implementation of this package.\n\n# Features\n- Load Local `HTML`, `CSS` and `Javascript` (and all kind of web) content from Assets via a local server.\n- Get `WebViewWidget` height to render in a `ListView`.\n\n# How to use?\n**1:** Add this to your package's pubspec.yaml file:\n\n```yaml\ndependencies:\n  webview_flutter_plus: ^0.4.19\n```\n\n**2:** You can install packages from the command line:\n\n```bash\n$ flutter packages get\n```\n\nAlternatively, your editor might support flutter packages get. Check the docs for your editor to learn more.\n\n\n**3:** Now you need to put the following implementations in `Android` and `iOS` respectively.\n\n### Android\nMake sure to add this line `android:usesCleartextTraffic=\"true\"` in your `\u003cproject-directory\u003e/android/app/src/main/AndroidManifest.xml` under `application` like this.\n```xml\n\u003capplication\n       android:usesCleartextTraffic=\"true\"\u003e\n\u003c/application\u003e\n```\n\nRequired Permissions are:\n```xml\n    \u003cuses-permission android:name=\"android.permission.INTERNET\" /\u003e\n```\n\n### iOS\nAdd following code in your `\u003cproject-directory\u003e/ios/Runner/Info.plist`\n```plist\n\u003ckey\u003eNSAppTransportSecurity\u003c/key\u003e\n  \u003cdict\u003e\n    \u003ckey\u003eNSAllowsArbitraryLoads\u003c/key\u003e \u003ctrue/\u003e\n  \u003c/dict\u003e\n```\n\n**4:** Now in your Dart code, you can use:\n\n```dart\nimport 'package:webview_flutter_plus/webview_flutter_plus.dart'; \n```\n\n**5:** Now you can use WebViewPlus as a widget:\n\n# Example\n\n### Please check [`example/lib/main.dart`](https://github.com/Shahxad-Akram/webview_flutter_plus/blob/master/example/lib/main.dart)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshahxad-akram%2Fwebview_flutter_plus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshahxad-akram%2Fwebview_flutter_plus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshahxad-akram%2Fwebview_flutter_plus/lists"}