We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c21b705 commit e31fca2Copy full SHA for e31fca2
lib/samples/xlsio/invoice/invoice.dart
@@ -61,7 +61,7 @@ class _InvoiceXlsIOState extends SampleViewState {
61
//Accessing via index
62
final Worksheet sheet = workbook.worksheets[0];
63
sheet.name = 'Invoice';
64
- sheet.showGridLines = false;
+ sheet.showGridlines = false;
65
66
sheet.enableSheetCalculations();
67
sheet.getRangeByName('A1').columnWidth = 4.82;
@@ -226,7 +226,7 @@ class _InvoiceXlsIOState extends SampleViewState {
226
picture.lastRow = 7;
227
picture.lastColumn = 8;
228
229
- final List<int> bytes = workbook.saveStream();
+ final List<int> bytes = workbook.saveAsStream();
230
workbook.dispose();
231
232
//Launch file.
0 commit comments