- Stable null-safe release
- Migrated to null safety
-
Support
sectionSeparatorBuilder
Separators only appear between sections: separator 0 appears after section 0 and the last separator appears after the last section.
Widget sectionSeparatorBuilder(BuildContext context, int section) {
return SizedBox(height: 10);
}
- Add assert for all the required parameters.
- Update documentation.
- Setting up Lint Rules.
-
Support
separatorBuilder
Separators only appear between list items: separator 0 appears after item 0 and the last separator appears after the last item.
Widget separatorBuilder(BuildContext context, IndexPath index) {
return SizedBox(height: 10);
}
- Improve build performance.
- Update documentation.
- Support all fields from
ListView.builder
constructor.
- Initial developers preview release.