We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doing any of the following:
excel = Excel.createExcel(); excel.rename(excel.sheets.keys.first, sheetName);
excel = Excel.createExcel(); excel.rename("Sheet1", sheetName);
excel = Excel.createExcel(); excel[sheetName]; excel.setDefaultSheet(sheetName); excel.delete('Sheet1');
followed by
Sheet sheetObject = excel[sheetName]; sheetObject.setDefaultColumnWidth(30.0); sheetObject.setDefaultRowHeight(15.0); var fileBytes = excel.save(); File(path) ..createSync(recursive: true) ..writeAsBytesSync(fileBytes!);
results in a corrupt excel file on excel 4.0.6
excel 4.0.6
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Doing any of the following:
followed by
results in a corrupt excel file on
excel 4.0.6
The text was updated successfully, but these errors were encountered: