v1.0.0
flutter_section_list_view
iOS UITableView처럼 섹션을 지원하는 확장된 Flutter ListView
6좋아요 1730일 다운로드40Pub 점수
플랫폼 정보 없음
iOS UITableView처럼 섹션을 지원하는 확장된 Flutter ListView
{"sdk":"flutter"}{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A flutter list view which supports sections like iOS UITableView with no overhead
To use this plugin, add flutter_section_list_view as a dependency in your pubspec.yaml file.
import 'flutter_section_list_view/flutter_section_list_view.dart';
After importing this plugin to your project, you can simply use it as a normal widget
FlutterSectionListView(
numberOfSection: 4,
numberOfRowsInSection: (section) {
return section * 3 + 1;
},
sectionWidget: (section) {
return Container(child: Padding(
padding: const EdgeInsets.all(8),
child: Text('Section $section'),
), color: Colors.grey,);
},
rowWidget: (section, row) {
return Container(
child: Padding(
padding: EdgeInsets.all(8),
child: Text('Row $section - $row'),
),
);
},
)
To use Pull-To-Refresh feature, simply provide value to attribute 'refresh', a callback function
listView.refresh = () async {
await new Future.delayed(new Duration(seconds: 3));
print('List Refreshed');
};
For Pagination feature, provide value to attribute 'loadMoreData', a callback function
listView.loadMoreData = () async {
await new Future.delayed(new Duration(seconds: 2));
print('More Data loaded and List refreshed');
/// set 'isMoreAvailable' attribute to 'false' when there are no more pages to return
listView.isMoreAvailable = false;
};