Download Latest Version v7.24.2 source code.tar.gz (596.7 kB)
Email in envelope

Get an email when there's a new version of Nylo Support

Home / v7.24.1
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2026-05-10 1.1 kB
v7.24.1 source code.tar.gz 2026-05-10 596.4 kB
v7.24.1 source code.zip 2026-05-10 753.0 kB
Totals: 3 Items   1.4 MB 0

Fixed

  • CollectionView no longer crashes mid-refresh on long lists - _onRefresh previously assigned _data = [] synchronously before awaiting the new data, which could leave the live SliverList pointing at an empty list mid-frame and throw RangeError when cached children relayed out. _data is now mutated only inside setState after the new data resolves
  • CollectionView accepts List<dynamic> returned from JSON-decoded API responses - previously a List<dynamic> (the typical shape from jsonDecode) would trip an internal List<T> assertion. The widget now lazily casts via List.cast<T>(), so callers no longer have to call .cast<T>() themselves
  • CollectionView.stateActions(name).refreshData() no longer clears the list mid-fetch - _data was being cleared synchronously before the new data resolved, briefly showing an empty state. The list is now preserved until the new data is ready
  • Null result from paginatedData on pull-to-refresh now preserves the existing list instead of incorrectly calling loadNoData(). The refresh indicator settles and the previous data remains visible
Source: README.md, updated 2026-05-10