stac_webview 0.1.2  stac_webview: ^0.1.2 copied to clipboard
stac_webview: ^0.1.2 copied to clipboard
A comprehensive WebView parser for Stac, serving as a wrapper for the `webview_flutter` package to seamlessly integrate web content within Stac applications.
Example #
- Add stac_webviewas a dependency in your pubspec.yaml file.
  dependencies:
    stac_webview:
- Add StacWebViewParserin Stac initialize.
void main() async {
  await Stac.initialize(
    parsers: const [
      StacWebViewParser(),
    ],
  );
  runApp(const MyApp());
}
- Add Stac WebView widget in your JSONs.
{
  "type": "webView",
  "url": "https://github.com/StacDev/stac"
}