David PHAM-VAN

Results 171 comments of David PHAM-VAN

@Abanoub-Fouad It's all in this file: https://github.com/DavBfr/dart_pdf/blob/master/pdf/lib/src/pdf/arabic.dart You'll have to fix it. I don't read Arabic writing.

@richard457 not really, you can work on it if you need that. I can help to understand the code and why it's a limitation.

I'll have to dig into it before answering

Actually, doing something like that almost work: ```dart Future _generatePdf(PdfPageFormat format, String title) async { final pdf = pw.Document(); pdf.addPage( pw.MultiPage( orientation: pw.PageOrientation.portrait, footer: (c) => pw.Align( alignment: pw.Alignment.centerRight, child:...

@rakeshm12 Just don't call save() twice! pw.Document() must be recreated each time you create a PDF. Otherwise, it will keep adding pages to the same document.

You can add a setState to the build method to set a boolean

Yes, RTL is not implemented.