dart_pptx 0.1.3 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');
}
}