docxtpl icon indicating copy to clipboard operation
docxtpl copied to clipboard

Use flutter like widgets to create .docx

Open DonnC opened this issue 4 years ago • 0 comments

Add ability to create .docx using flutter like widgets An example will be

DocxTpl document = DocxTpl('report.docx');

document.header(
 child: 
      docxtpl.Text('Hello Universe', 
        style: docxtpl.TextStyle(fontSize: 40))
 );

Inspiration from flutter pdf plugin

DonnC avatar Mar 15 '21 06:03 DonnC