Plugins

Yet Another React Lightbox allows you to add optional features to your project based on your requirements via plugins.

The following plugins are bundled in the package:

Each plugin can be imported either from the yet-another-react-lightbox/plugins module entrypoint:

// using named export
import { Fullscreen } from "yet-another-react-lightbox/plugins";

or from the plugin-specific entrypoint (this option is preferred in TypeScript projects):

// using named export
import { Fullscreen } from "yet-another-react-lightbox/plugins/fullscreen";

or

// using default export
import Fullscreen from "yet-another-react-lightbox/plugins/fullscreen";

Please refer to the individual plugin's documentation for additional details.

Sandbox

Edit on StackBlitz
Please be advised that StackBlitz sandboxes may not work correctly in your browser. StackBlitz currently fully supports only Chromium-based browsers.