Export to PowerPoint

The export to PPTX feature allows you to export your slide deck to a PowerPoint presentation. The export feature is available in the presenter toolbar.

Usage

To use the export to PPTX feature, you need to add the flutter_deck_pptx_export dependency to your pubspec.yaml file:

dependencies:
  flutter_deck_pptx_export:

Then, add the FlutterDeckPptxExportPlugin to your FlutterDeckApp:

FlutterDeckApp(
  // ...
  plugins: [
    FlutterDeckPptxExportPlugin(),
  ],
);