1. 19 Nov, 2020 1 commit
  2. 01 Nov, 2020 1 commit
  3. 30 Oct, 2020 2 commits
  4. 29 Oct, 2020 1 commit
  5. 25 Oct, 2020 2 commits
  6. 18 Oct, 2020 1 commit
  7. 17 Oct, 2020 3 commits
  8. 01 Oct, 2020 5 commits
  9. 20 Sep, 2020 1 commit
  10. 11 Sep, 2020 1 commit
  11. 10 Sep, 2020 3 commits
  12. 09 Sep, 2020 5 commits
  13. 08 Sep, 2020 4 commits
  14. 07 Sep, 2020 1 commit
  15. 05 Sep, 2020 1 commit
  16. 24 Aug, 2020 1 commit
  17. 16 Aug, 2020 1 commit
  18. 14 Aug, 2020 3 commits
  19. 12 Aug, 2020 1 commit
  20. 11 Aug, 2020 2 commits
    • Nicolas Lopez authored
    • When route which contains PdfPreview is popped, we got a:
      Unhandled Exception: setState() called after dispose()
      
      The solution is to add if (!mounted) return; in the file pdf_preview.dart in the function _raster() just after await for (final PdfRaster page in Printing.raster(_doc, dpi: dpi)) {
      computib authored