{"id":32308084,"url":"https://github.com/cilestal/clickable_list_wheel_view","last_synced_at":"2026-02-20T23:01:52.423Z","repository":{"id":40495671,"uuid":"330919135","full_name":"Cilestal/clickable_list_wheel_view","owner":"Cilestal","description":"Simple wrapper for ListWheelScrollView that allows children to respond on gesture (onTap) events","archived":false,"fork":false,"pushed_at":"2024-11-12T12:13:35.000Z","size":3148,"stargazers_count":14,"open_issues_count":1,"forks_count":9,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-23T07:33:01.700Z","etag":null,"topics":["flutter","listwheelscrollview"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Cilestal.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-01-19T08:54:47.000Z","updated_at":"2025-02-02T13:41:57.000Z","dependencies_parsed_at":"2023-01-31T12:15:55.726Z","dependency_job_id":null,"html_url":"https://github.com/Cilestal/clickable_list_wheel_view","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Cilestal/clickable_list_wheel_view","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cilestal%2Fclickable_list_wheel_view","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cilestal%2Fclickable_list_wheel_view/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cilestal%2Fclickable_list_wheel_view/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cilestal%2Fclickable_list_wheel_view/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Cilestal","download_url":"https://codeload.github.com/Cilestal/clickable_list_wheel_view/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cilestal%2Fclickable_list_wheel_view/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29667119,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T19:49:36.704Z","status":"ssl_error","status_checked_at":"2026-02-20T19:44:05.372Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flutter","listwheelscrollview"],"created_at":"2025-10-23T07:26:46.402Z","updated_at":"2026-02-20T23:01:52.410Z","avatar_url":"https://github.com/Cilestal.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![pub package](https://img.shields.io/pub/v/clickable_list_wheel_view.svg)](https://pub.dartlang.org/packages/clickable_list_wheel_view)\n\n\n# clickable_list_wheel_view\n\nSimple wrapper for ListWheelScrollView that allows children to respond on gesture (onTap) events\n\n\u003cimg src=\"https://raw.githubusercontent.com/cilestal/clickable_list_wheel_view/master/example/example.gif\" align = \"middle\" height = \"800\" alt=\"Animated\"\u003e\n\n# Installation\nIn the `dependencies:` section of your `pubspec.yaml`, add the following line:\n\n```yaml\ndependencies:\n    clickable_list_wheel_view: latest_version\n```\n\n# Usage\n\n### Basic\n\nYou can get started really simple, just add\n\n```dart\n\nClickableListWheelScrollView(\n  scrollController: _scrollController,\n  itemHeight: _itemHeight,\n  itemCount: _itemCount,\n  onItemTapCallback: (index) {\n    print(\"onItemTapCallback index: $index\");\n  },\n  child: ListWheelScrollView.useDelegate(\n    controller: _scrollController,\n    itemExtent: _itemHeight,\n    physics: FixedExtentScrollPhysics(),\n    overAndUnderCenterOpacity: 0.5,\n    perspective: 0.002,\n    onSelectedItemChanged: (index) {\n      print(\"onSelectedItemChanged index: $index\");\n    },\n    childDelegate: ListWheelChildBuilderDelegate(\n      builder: (context, index) =\u003e _child(index),\n      childCount: _itemCount,\n    ),\n  ),\n)\n\n```\n\n## Full Api\n\n```dart\n  ///  Required. The [child] which the wrapper will target to\n  final ListWheelScrollView child;\n\n  /// Required. Must be the same for list and wrapper\n  final ScrollController scrollController;\n\n  /// Optional. ListWheelScrollView height\n  final double listHeight;\n\n  /// Required. Height of one child in ListWheelScrollView\n  final double itemHeight;\n\n  /// Required. Number of items in ListWheelScrollView\n  final int itemCount;\n\n  /// If true the list will scroll on click\n  final bool scrollOnTap;\n\n  /// Set a handler for listening to a `tap` event\n  final OnItemTapCallback onItemTapCallback;\n\n  /// sets the duration of the scroll  animation\n  final Duration animationDuration;\n  \n  /// use with ListWheelChildLoopingListDelegate\n  final bool loop;\n\n```\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcilestal%2Fclickable_list_wheel_view","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcilestal%2Fclickable_list_wheel_view","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcilestal%2Fclickable_list_wheel_view/lists"}