What problem does it solve?
WebF apps often need access to native device features that web APIs can't provide, such as sharing content, accessing the camera, handling payments, or geolocation. This Skill explains how to install and use WebF native plugins to bridge Flutter and JavaScript so your app can access platform capabilities across iOS, Android, and macOS.
Core Features & Use Cases
- Native plugin discovery and installation on both the Flutter (pubspec.yaml) and npm sides
- Bridge to native platform APIs for sharing, camera, payments, geolocation, push notifications, and sensors
- Use case: build features that require native capabilities in a WebF app without leaving the JavaScript context
Quick Start
Install the Flutter plugin package and the corresponding npm package, register the plugin module in Flutter with WebF.defineModule, install the npm package in your web project, and implement feature-detection in JavaScript to gracefully fallback if the plugin is unavailable.