{"id":31647945,"url":"https://github.com/rss1102/tdesign-flutter-re","last_synced_at":"2025-10-07T06:47:06.485Z","repository":{"id":313592007,"uuid":"1049002111","full_name":"RSS1102/tdesign-flutter-re","owner":"RSS1102","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-02T10:45:39.000Z","size":44776,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-05T07:53:30.176Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/RSS1102.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-02T10:45:23.000Z","updated_at":"2025-09-02T10:45:48.000Z","dependencies_parsed_at":"2025-09-07T06:48:40.441Z","dependency_job_id":null,"html_url":"https://github.com/RSS1102/tdesign-flutter-re","commit_stats":null,"previous_names":["rss1102/tdesign-flutter-re"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RSS1102/tdesign-flutter-re","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RSS1102%2Ftdesign-flutter-re","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RSS1102%2Ftdesign-flutter-re/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RSS1102%2Ftdesign-flutter-re/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RSS1102%2Ftdesign-flutter-re/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RSS1102","download_url":"https://codeload.github.com/RSS1102/tdesign-flutter-re/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RSS1102%2Ftdesign-flutter-re/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278734426,"owners_count":26036404,"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","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-10-07T06:47:01.952Z","updated_at":"2025-10-07T06:47:06.477Z","avatar_url":"https://github.com/RSS1102.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://tdesign.tencent.com/\" target=\"_blank\"\u003e\n    \u003cimg alt=\"TDesign Logo\" width=\"200\" src=\"https://tdesign.gtimg.com/site/TDesign.png\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/Tencent/tdesign-flutter/blob/main/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/license/tencent/tdesign-flutter\" alt=\"License\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://pub.dev/packages/tdesign_flutter\"\u003e\n    \u003cimg src=\"https://img.shields.io/pub/v/tdesign_flutter\" alt=\"Version\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://pub.dev/packages/tdesign_flutter/score\"\u003e\n    \u003cimg src=\"https://img.shields.io/pub/dm/tdesign_flutter\" alt=\"Downloads\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\nEnglish | [简体中文](README_zh_CN.md)\n\nTencent TDesign UI component library of Flutter, suitable for use in mobile projects.\n\n\n# 🎉 Features\n\n- Provides Flutter UI component library in TDesign design style\n- Support customizing themes according to App design style\n- Provides commonly used Icon library and supports customized replacement\n- Define color groups according to the TDesign specification, which can be viewed in TDColors to facilitate the adaptation of components to the TDesign specification.\n- The color value declaration class can add default colors and view the default display effect of color values in real time.\n\n\n# 🔨 Usage\n- SDK dependency version\n```yaml\ndart: \"\u003e=2.19.0 \u003c4.0.0\"\nflutter: \"\u003e=3.7.0\"\n```\n\n- Add the dependency in `pubspec.yaml`\n\n```yaml\ndependencies:\n  tdesign_flutter: ^0.0.6\n```\n\n- Import at the top of your file:\n\n```dart\nimport 'package:tdesign_flutter/tdesign_flutter.dart';\n```\n\n- You can configure theme styles such as colors, font sizes, font styles, corner radius, and shadows through a json file. \nRetrieve theme data using `TDTheme.of(context)` or `TDTheme.defaultData()`. It is recommended \nthat components use `TDTheme.of(context)` unless the component does not need to follow local themes, \nin which case `TDTheme.defaultData()` can be used.\n\nExamples of using colors, fonts, and corner radius:\n\n```dart\nTDTheme.of(context).brandNormalColor\nTDTheme.defaultData().fontBodyLarge\n```\n\n- TDesign's icons do not follow the theme, they are all in ttf format, usage examples:\n\n```dart\nIcon(TDIcons.activity)\n```\n\n- For more use examples, please refer to [example/lib/page](tdesign-component/example/lib/page)\n\n\n# TDesign component libraries\n\nTDesign also provides component libraries for other platforms and frameworks.\n\n- component library for Vue 2.x : [tdesign-vue](https://github.com/Tencent/tdesign-vue)\n- component library for Vue 3.x : [tdesign-vue-next](https://github.com/Tencent/tdesign-vue-next)\n- component library for React : [tdesign-react](https://github.com/Tencent/tdesign-react)\n- component library for Vue 3.x Mobile : [tdesign-mobile-vue](https://github.com/Tencent/tdesign-mobile-vue)\n- component library for React Mobile : [tdesign-mobile-react](https://github.com/Tencent/tdesign-mobile-react)\n- component library for Wechat miniprogram : [tdesign-miniprogram](https://github.com/Tencent/tdesign-miniprogram)\n\n# Acknowledgements\n\nTDesign Flutter depends on the following component libraries. We appreciate the authors for their open-source contributions:\n\n- [easy_refresh](https://pub-web.flutter-io.cn/packages/easy_refresh)\n- [flutter_swiper](https://pub-web.flutter-io.cn/packages/flutter_swiper)\n- [flutter_slidable](https://pub-web.flutter-io.cn/packages/flutter_slidable)\n- [image_picker](https://pub-web.flutter-io.cn/packages/image_picker)\n\n# Contributing\n\nContributing is welcome. Read [guidelines for contributing](CONTRIBUTING.md) before submitting your [Pull Request](https://github.com/Tencent/tdesign-flutter/pulls).\n\n# Feedback\n\nCreate your [Github issues](https://github.com/Tencent/tdesign-flutter/issues) or scan the QR code below to join our user groups\n\n\u003cimg src=\"https://raw.githubusercontent.com/Tencent/tdesign/main/packages/components/src/images/groups/vue3-group.png\" width=\"200\" /\u003e\n\n# License\n\nThe MIT License. Please see [the license file](LICENSE) for more information.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frss1102%2Ftdesign-flutter-re","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frss1102%2Ftdesign-flutter-re","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frss1102%2Ftdesign-flutter-re/lists"}