{"id":20819352,"url":"https://github.com/faob-dev/flutter_grid_delegate_ext","last_synced_at":"2025-05-07T15:22:22.903Z","repository":{"id":56829470,"uuid":"170133090","full_name":"faob-dev/flutter_grid_delegate_ext","owner":"faob-dev","description":"Flutter SliverGridDelegate extension","archived":false,"fork":false,"pushed_at":"2019-02-11T14:50:17.000Z","size":268,"stargazers_count":15,"open_issues_count":0,"forks_count":5,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-31T11:21:11.913Z","etag":null,"topics":["flutter","flutter-package","gridview","slivergrid"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/faob-dev.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":"2019-02-11T13:26:48.000Z","updated_at":"2021-06-15T07:30:54.000Z","dependencies_parsed_at":"2022-09-02T04:00:23.118Z","dependency_job_id":null,"html_url":"https://github.com/faob-dev/flutter_grid_delegate_ext","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faob-dev%2Fflutter_grid_delegate_ext","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faob-dev%2Fflutter_grid_delegate_ext/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faob-dev%2Fflutter_grid_delegate_ext/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faob-dev%2Fflutter_grid_delegate_ext/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/faob-dev","download_url":"https://codeload.github.com/faob-dev/flutter_grid_delegate_ext/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252902910,"owners_count":21822330,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","flutter-package","gridview","slivergrid"],"created_at":"2024-11-17T22:06:07.860Z","updated_at":"2025-05-07T15:22:22.884Z","avatar_url":"https://github.com/faob-dev.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Simple SliverGridDelegate extension\n\nSimple SliverGridDelegate extension, Height of big cell and small cell can be adjusted, `BigCellHeight \u003e= SmallCellHeight`.\n\n[![pub package](https://img.shields.io/pub/v/flutter_grid_delegate_ext.svg)](https://pub.dartlang.org/packages/flutter_grid_delegate_ext)\n\n### Installation\n\nAdd dependency in `pubspec.yaml`:\n```yaml\ndependencies:\n  flutter_grid_delegate_ext: \"^0.0.2\"\n```\n\nImport in your project:\n```dart\nimport 'package:flutter_grid_delegate_ext/flutter_grid_delegate_ext.dart';\n```\n\n### Basic usage\n\n#### Unequal cells height with first cell small\n```\nGridView.builder(\n    gridDelegate: XSliverGridDelegate(\n        crossAxisCount: 3,\n        smallCellExtent: 100,\n        bigCellExtent: 200,\n        mainAxisSpacing: 5,\n        crossAxisSpacing: 5,\n        isFirstCellBig: false\n    )\n)\n```\n\u003cimg src=\"https://raw.githubusercontent.com/faob-dev/flutter_grid_delegate_ext/master/screenshots/layout1.jpg\" width=\"200\" height=\"355\"\u003e\n\n#### Unequal cells height with first cell big\n```\nGridView.builder(\n    gridDelegate: XSliverGridDelegate(\n        crossAxisCount: 3,\n        smallCellExtent: 100,\n        bigCellExtent: 200,\n        mainAxisSpacing: 5,\n        crossAxisSpacing: 5,\n        isFirstCellBig: true\n    )\n)\n```\n\n\u003cimg src=\"https://raw.githubusercontent.com/faob-dev/flutter_grid_delegate_ext/master/screenshots/layout2.jpg\" width=\"200\" height=\"355\"\u003e\n\n#### Equal cells height\n```\nGridView.builder(\n    gridDelegate: XSliverGridDelegate(\n        crossAxisCount: 3,\n        smallCellExtent: 200,\n        bigCellExtent: 200,\n        mainAxisSpacing: 5,\n        crossAxisSpacing: 5,\n    )\n)\n```\n\u003cimg src=\"https://raw.githubusercontent.com/faob-dev/flutter_grid_delegate_ext/master/screenshots/layout3.jpg\" width=\"200\" height=\"355\"\u003e\n\n### Examples\n\n[example](https://github.com/faob-dev/flutter_grid_delegate_ext/tree/master/example) project contains demo\n\n\n### Bugs/Requests\nReporting issues and requests for new features are always welcome.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffaob-dev%2Fflutter_grid_delegate_ext","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffaob-dev%2Fflutter_grid_delegate_ext","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffaob-dev%2Fflutter_grid_delegate_ext/lists"}