{"id":21196332,"url":"https://github.com/davigmacode/flutter_wx_sheet","last_synced_at":"2025-03-14T21:50:01.810Z","repository":{"id":230866203,"uuid":"780285204","full_name":"davigmacode/flutter_wx_sheet","owner":"davigmacode","description":"The sheet widget serves as the building block for many Widgetarian components, providing a base layer for customization.","archived":false,"fork":false,"pushed_at":"2024-08-22T13:57:47.000Z","size":3091,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-01-21T14:21:34.461Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/wx_sheet","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/davigmacode.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["davigmacode"],"patreon":null,"open_collective":null,"ko_fi":"davigmacode","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":["https://www.buymeacoffee.com/davigmacode"]}},"created_at":"2024-04-01T06:23:04.000Z","updated_at":"2024-12-16T09:21:32.000Z","dependencies_parsed_at":"2024-06-15T03:37:32.768Z","dependency_job_id":"e7f9d5f9-852a-4888-b0b3-d713442f0c9e","html_url":"https://github.com/davigmacode/flutter_wx_sheet","commit_stats":null,"previous_names":["davigmacode/wx_sheet"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davigmacode%2Fflutter_wx_sheet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davigmacode%2Fflutter_wx_sheet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davigmacode%2Fflutter_wx_sheet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davigmacode%2Fflutter_wx_sheet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/davigmacode","download_url":"https://codeload.github.com/davigmacode/flutter_wx_sheet/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243652693,"owners_count":20325607,"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":[],"created_at":"2024-11-20T19:35:36.402Z","updated_at":"2025-03-14T21:50:01.729Z","avatar_url":"https://github.com/davigmacode.png","language":"Dart","readme":"[![Pub Version](https://img.shields.io/pub/v/wx_sheet)](https://pub.dev/packages/wx_sheet) ![GitHub](https://img.shields.io/github/license/davigmacode/flutter_wx_sheet) [![GitHub](https://badgen.net/badge/icon/buymeacoffee?icon=buymeacoffee\u0026color=yellow\u0026label)](https://www.buymeacoffee.com/davigmacode) [![GitHub](https://badgen.net/badge/icon/ko-fi?icon=kofi\u0026color=red\u0026label)](https://ko-fi.com/davigmacode)\n\nThe sheet widget serves as the building block for many Widgetarian components, providing a base layer for customization.\n\n[![Preview](https://github.com/davigmacode/flutter_wx_sheet/raw/main/media/preview.gif)](https://davigmacode.github.io/flutter_wx_sheet)\n\n[Demo](https://davigmacode.github.io/flutter_wx_sheet)\n\n## Usage\n\nTo read more about classes and other references used by `wx_sheet`, see the [API Reference](https://pub.dev/documentation/wx_sheet/latest/).\n\n```dart\nWxSheet(\n  variant: WxSheetVariant.tonal,\n  borderRadius: BorderRadius.all(Radius.circular(5)),\n  child: Center(child: Text('Tonal')),\n)\n\nWrap(\n  spacing: 10,\n  children: [\n    WxSheet.circle(\n      radius: 50,\n      child: Center(child: Text('Text')),\n    ),\n    WxSheet.circle(\n      radius: 50,\n      variant: WxSheetVariant.tonal,\n      child: Center(child: Text('Tonal')),\n    ),\n    WxSheet.circle(\n      radius: 50,\n      variant: WxSheetVariant.elevated,\n      child: Center(child: Text('Elevated')),\n    ),\n    WxSheet.circle(\n      radius: 50,\n      variant: WxSheetVariant.filled,\n      child: Center(child: Text('Filled')),\n    ),\n    WxSheet.circle(\n      radius: 50,\n      variant: WxSheetVariant.outlined,\n      child: Center(child: Text('Outlined')),\n    ),\n  ],\n)\n\nWrap(\n  spacing: 10,\n  children: [\n    WxSheet(\n      width: 100,\n      height: 100,\n      severity: Colors.red,\n      child: Center(\n        child: WxTextTile(\n          align: WxTextAlign.center,\n          title: Text('Text'),\n          subtitle: Text('Danger'),\n        ),\n      ),\n    ),\n    WxSheet(\n      width: 100,\n      height: 100,\n      severity: Colors.yellow,\n      child: Center(\n        child: WxTextTile(\n          align: WxTextAlign.center,\n          title: Text('Text'),\n          subtitle: Text('Warning'),\n        ),\n      ),\n    ),\n    WxSheet(\n      width: 100,\n      height: 100,\n      severity: Colors.green,\n      child: Center(\n        child: WxTextTile(\n          align: WxTextAlign.center,\n          title: Text('Text'),\n          subtitle: Text('Success'),\n        ),\n      ),\n    ),\n    WxSheet(\n      width: 100,\n      height: 100,\n      severity: Colors.blue,\n      child: Center(\n        child: WxTextTile(\n          align: WxTextAlign.center,\n          title: Text('Text'),\n          subtitle: Text('Info'),\n        ),\n      ),\n    ),\n  ],\n)\n```\n\n## Sponsoring\n\n\u003ca href=\"https://www.buymeacoffee.com/davigmacode\" target=\"_blank\"\u003e\u003cimg src=\"https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png\" alt=\"Buy Me A Coffee\" height=\"45\"\u003e\u003c/a\u003e\n\u003ca href=\"https://ko-fi.com/davigmacode\" target=\"_blank\"\u003e\u003cimg src=\"https://storage.ko-fi.com/cdn/brandasset/kofi_s_tag_white.png\" alt=\"Ko-Fi\" height=\"45\"\u003e\u003c/a\u003e\n\nIf this package or any other package I created is helping you, please consider to sponsor me so that I can take time to read the issues, fix bugs, merge pull requests and add features to these packages.","funding_links":["https://github.com/sponsors/davigmacode","https://ko-fi.com/davigmacode","https://www.buymeacoffee.com/davigmacode"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavigmacode%2Fflutter_wx_sheet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavigmacode%2Fflutter_wx_sheet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavigmacode%2Fflutter_wx_sheet/lists"}