listview_library

Last updated:

0 purchases

listview_library Image
listview_library Images
Add to Cart

Description:

listview library

listview_library #
A Flutter widget for ListView.
Features #

Support headers for each group.
All fields from ListView.builder constructor available.

Getting Started #
Add the package to your pubspec.yaml:
listview_library: ^1.1.1
copied to clipboard
In your dart file, import the library:
import 'package:listview_library/listview_library.dart';
copied to clipboard
Instead of using a ListView create a GroupListView Widget:

@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'My App',
home: Scaffold(
appBar: AppBar(
title: const Text('My ListView'),
),
body: MyListView(data: data),
),
);
}
}
copied to clipboard
Contributions #
Contributions of any kind are more than welcome! Feel free to fork and improve flutter_listview_library in any way you want, make a pull request, or open an issue.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.