An internal Flutter plugin for flutter_quill
package to access platform-specific APIs,
built following the federated plugin architecture.
A detailed explanation of the federated plugin concept can be found in the Flutter documentation.
This means the project is separated into the following packages:
quill_native_bridge
: The app-facing package that clients depend on to use the plugin. This package specifies the API used by the Flutter app.quill_native_bridge_platform_interface
: The package that declares an interface that any platform package must implement to support the app-facing package.- The platform packages: One or more packages that contain the platform-specific implementation code. The app-facing package calls into these packages—they aren't included into an app, unless they contain platform-specific functionality:
For more details, refer to quill_native_bridge README.