├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── dependabot.yaml ├── release.yaml └── workflows │ └── main.yaml ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── assets ├── chat.gif ├── chat.png └── new-screenshot-for-readme.png ├── example ├── .gitignore ├── .metadata ├── analysis_options.yaml ├── lib │ ├── chat_example.dart │ ├── example.dart │ └── scroll_example.dart └── pubspec.yaml ├── lib ├── src │ ├── sticky_grouped_list.dart │ └── sticky_grouped_list_order.dart └── sticky_grouped_list.dart ├── pubspec.yaml └── test └── sticky_grouped_list_test.dart /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Default owners 2 | * @Dimibe -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/.github/release.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /assets/chat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/assets/chat.gif -------------------------------------------------------------------------------- /assets/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/assets/chat.png -------------------------------------------------------------------------------- /assets/new-screenshot-for-readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/assets/new-screenshot-for-readme.png -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/lib/chat_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/example/lib/chat_example.dart -------------------------------------------------------------------------------- /example/lib/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/example/lib/example.dart -------------------------------------------------------------------------------- /example/lib/scroll_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/example/lib/scroll_example.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /lib/src/sticky_grouped_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/lib/src/sticky_grouped_list.dart -------------------------------------------------------------------------------- /lib/src/sticky_grouped_list_order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/lib/src/sticky_grouped_list_order.dart -------------------------------------------------------------------------------- /lib/sticky_grouped_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/lib/sticky_grouped_list.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/sticky_grouped_list_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dimibe/sticky_grouped_list/HEAD/test/sticky_grouped_list_test.dart --------------------------------------------------------------------------------