{"id":14971535,"url":"https://github.com/ctkqiang/simple_in_app_webview","last_synced_at":"2026-02-28T07:04:39.447Z","repository":{"id":62458764,"uuid":"494983021","full_name":"ctkqiang/simple_in_app_webview","owner":"ctkqiang","description":"\"The most simple to implement in app web view package\"","archived":false,"fork":false,"pushed_at":"2022-05-31T08:38:23.000Z","size":418,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-05T02:41:43.815Z","etag":null,"topics":["android","dart","flutter","johnmelodyme","opensource","webview"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/simple_in_app_webview","language":"CMake","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ctkqiang.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}},"created_at":"2022-05-22T06:54:06.000Z","updated_at":"2022-07-22T17:58:22.000Z","dependencies_parsed_at":"2022-11-02T00:32:14.818Z","dependency_job_id":null,"html_url":"https://github.com/ctkqiang/simple_in_app_webview","commit_stats":null,"previous_names":["ctkqiang/simple_in_app_webview","johnmelodyme/simple_in_app_webview"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ctkqiang%2Fsimple_in_app_webview","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ctkqiang%2Fsimple_in_app_webview/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ctkqiang%2Fsimple_in_app_webview/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ctkqiang%2Fsimple_in_app_webview/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ctkqiang","download_url":"https://codeload.github.com/ctkqiang/simple_in_app_webview/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240324910,"owners_count":19783577,"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":["android","dart","flutter","johnmelodyme","opensource","webview"],"created_at":"2024-09-24T13:45:20.711Z","updated_at":"2026-01-11T13:34:38.223Z","avatar_url":"https://github.com/ctkqiang.png","language":"CMake","funding_links":["https://www.buymeacoffee.com/johnmelodymel"],"categories":[],"sub_categories":[],"readme":"## SimpleInAppWebView\n\n|                 | Android | IOS     |\n| --------------- | ------- | ------- |\n| **Requirement** | min 20+ | min 9.0 |\n\n### Getting Started\n\nThis 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.\n\n### What so special?\n\nThis package is a plug and play, there are no neccessary code a webview from scratch. This package provide the feature of the following:\n\n1. Web a webpage from the assign url.\n2. Share url to 3rd party application.\n3. Option to open the url in the browser.\n\n#### Demo:\n\n![demo](https://github.com/johnmelodyme/simple_in_app_webview/blob/main/demo.gif?raw=true)\n\n### How to use?\n\n1. Installation\n   Add `simple_in_app_webview` to `pubspec.yaml`, and hit command `flutter pub get`.\n   or\n   run `flutter pub add simple_in_app_webview`\n\n   ```yaml\n   dependencies:\n     simple_in_app_webview: any\n   ```\n\n2. Implementation\n   Before implementing, make sure you uderstand the `parameters`.\n\n```dart\n   SimpleWebView({\n    Key? key,\n    @required this.url,\n    @required this.title,\n    @required this.message,\n    this.isUrlCentered = false,\n    this.fontColour = Colors.white,\n    this.appBarColour = Colors.white,\n    this.shareButtonColour = Colors.black,\n    this.loadingIndicatorColour = Colors.black,\n  }) : super(key: key);\n```\n\n```dart\n  import 'package:simple_in_app_webview/simple_in_app_webview.dart';\n```\n\nExample of calling the widget:\n\n```dart\n  SimpleWebView(\n    title: 'My github profile',\n    message: 'This is the description',\n    url: 'https://github.com/johnmelodyme',\n    appBarColour: Colors.purple,\n    isUrlCentered: false,\n    fontColour: Colors.white,\n    loadingIndicatorColour: Colors.purple,\n    shareButtonColour: Colors.white,\n  )\n```\n\n### Contribution:\n\nI Would ❤️ to see any contributions. If you do liked my work, show some ❤️ by ⭐ repo.\n\nAlso you can appreciate me by buy me a coffee:\n\u003cbr /\u003e\n\u003ca href=\"https://www.buymeacoffee.com/johnmelodymel\" target=\"_blank\"\u003e\u003cimg src=\"https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png\" alt=\"Buy Me A Coffee\" style=\"height: 60px !important;width: 217px !important;\" \u003e\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fctkqiang%2Fsimple_in_app_webview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fctkqiang%2Fsimple_in_app_webview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fctkqiang%2Fsimple_in_app_webview/lists"}