justkawal / excel

Excel Library for Flutter and Dart - https://pub.dev/packages/excel
MIT License
403 stars 212 forks source link

Issue on SpannedItems #261

Open hortegag91 opened 11 months ago

hortegag91 commented 11 months ago

According to documentation the method spannedItems return a List. My .xlsx file has several merged cells image but spannedItems list show empty image

Code:

      Excel excel = Excel.decodeBytes(bytes);
      for (MapEntry<String, Sheet> entry in excel.tables.entries) {
        List<String> spanned = entry.value.spannedItems;
      }

Version: excel: ^2.1.0

FauconSpartiate commented 9 months ago

Can you provide a sample excel file for us to reproduce the issue?