dart_pptx 0.1.3 copy "dart_pptx: ^0.1.3" to clipboard
dart_pptx: ^0.1.3 copied to clipboard

A package for creating pptx files from markdown or slide templates.

example/dart_pptx_example.dart

import 'package:dart_pptx/dart_pptx.dart';
import 'dart:io';

void main() async {
  var pres = PowerPoint();
  pres.addTitleSlide(
    title: TextValue.uniform('Hello World'),
  );
  final bytes = await pres.save();
  if (bytes != null) {
    File('./hello.pptx').writeAsBytesSync(bytes);
  } else {
    print('Failed to save presentation');
  }
}
7
likes
120
pub points
61%
popularity

Publisher

verified publisherrodydavis.com

A package for creating pptx files from markdown or slide templates.

Repository (GitHub)
View/report issues

Documentation

API reference

Funding

Consider supporting this project:

www.buymeacoffee.com
www.paypal.com

License

Apache-2.0 (LICENSE)

Dependencies

archive, collection, file, http, image_size_getter, json_annotation, mustache_template, path, recase

More

Packages that depend on dart_pptx