Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 1.8 KB

README.md

File metadata and controls

19 lines (15 loc) · 1.8 KB

🪶 Flutter quill_native_bridge plugin

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:

  1. 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.
  2. quill_native_bridge_platform_interface: The package that declares an interface that any platform package must implement to support the app-facing package.
  3. 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.