AI prompts
base on A Flutter UI components lib for TDesign. <p align="center">
<a href="https://tdesign.tencent.com/" target="_blank">
<img alt="TDesign Logo" width="200" src="https://tdesign.gtimg.com/site/TDesign.png" />
</a>
</p>
<p align="center">
<a href="https://github.com/Tencent/tdesign-flutter/blob/main/LICENSE">
<img src="https://img.shields.io/github/license/tencent/tdesign-flutter" alt="License">
</a>
<a href="https://pub.dev/packages/tdesign_flutter">
<img src="https://img.shields.io/pub/v/tdesign_flutter" alt="Version">
</a>
<a href="https://pub.dev/packages/tdesign_flutter/score">
<img src="https://img.shields.io/pub/dm/tdesign_flutter" alt="Downloads">
</a>
<a href="https://deepwiki.com/Tencent/tdesign-flutter">
<img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki">
</a>
</p>
English | [įŽäŊ䏿](./README_zh_CN.md)
**TDesign Flutter** is a cross-platform UI component library based on Tencent's design system. Built with the Flutter framework, it enables rapid development of beautiful, consistent mobile/web applications with rich pre-built components and theme customization capabilities, supporting iOS, Android, and Web platforms.
## đ Features
- Provides Flutter UI component library following TDesign design specifications
- Supports theme customization to match your App's design style
- Includes a comprehensive Icon library with custom replacement support
- Defines color groups according to TDesign specifications (viewable in `TDColors`)
- Real-time preview of default color values through the color declaration class
## đą Preview
**Android**: Scan the QR code to download the preview app
<img width="200" src="https://tdesign.tencent.com/flutter/assets/qrcode/td_apk_qrcode_0_2_7.png" />
Download link: [https://oteam-tdesign-1258344706.cos.ap-guangzhou.tencentcos.cn/flutter/tdesign-flutter-0.2.7-314.apk](https://oteam-tdesign-1258344706.cos.ap-guangzhou.tencentcos.cn/flutter/tdesign-flutter-0.2.7-314.apk)
**iOS**: Run the project to preview
[https://github.com/Tencent/tdesign-flutter/tree/main/tdesign-component](https://github.com/Tencent/tdesign-flutter/tree/main/tdesign-component)
## đ¨ Installation
### SDK Requirements
```yaml
dart: ">=3.2.6 <4.0.0"
flutter: ">=3.16.0"
```
### Add Dependency
Add the following to your `pubspec.yaml`:
```yaml
dependencies:
tdesign_flutter: ^0.2.7
```
### Import
```dart
import 'package:tdesign_flutter/tdesign_flutter.dart';
```
## đ Usage
### Theme Configuration
Configure theme styles (colors, font sizes, font styles, corner radius, shadows) through JSON files. Retrieve theme data using `TDTheme.of(context)` or `TDTheme.defaultData()`.
> **Recommendation**: Use `TDTheme.of(context)` for components that should follow the local theme. Only use `TDTheme.defaultData()` for components that don't need to follow local themes.
```dart
// Colors
TDTheme.of(context).brandNormalColor
// Fonts
TDTheme.defaultData().fontBodyLarge
```
### Icons
TDesign icons are in TTF format and do not follow the theme:
```dart
Icon(TDIcons.activity)
```
## đ¨ Custom Theme
TDesign Flutter provides two flexible theming approaches:
### Method 1: JSON Configuration
Define theme properties directly in JSON format:
```dart
String themeConfig = '''
{
"myTheme": {
"color": {
"brandNormalColor": "#D7B386"
},
"font": {
"fontBodyMedium": {
"size": 40,
"lineHeight": 55
}
}
}
}
''';
MaterialApp(
theme: ThemeData(
extensions: [TDThemeData.fromJson('myTheme', themeConfig)!],
),
// ...
)
```
> For all available theme keys, see [td_default_theme.dart](https://github.com/Tencent/tdesign-flutter/blob/develop/tdesign-component/lib/src/theme/td_default_theme.dart)
### Method 2: Theme Generator (Recommended)
If you don't want to customize too many colors but still want a beautiful custom theme, the "Theme Generator" is a great choice.
> **Note**: Since [v0.2.6](https://tdesign.tencent.com/flutter/changelog), the Theme Generator supports "Dark Mode". See [Dark Mode](https://tdesign.tencent.com/flutter/dark-mode) for details.
<video controls width="100%">
<source src="https://tdesign.gtimg.com/site/theme/demo-cn.mp4" type="video/mp4" />
</video>
1. **Generate**: Visit [TDesign Theme Generator](https://tdesign.tencent.com/vue/custom-theme), click the theme generator below, select your desired colors in the generator on the right, and click download.
2. **Convert**: You will get a `theme.css` file. Place it in `tdesign-component/example/shell/theme/`, modify `css2JsonTheme.dart` with your file name, theme name, and output path to generate a `theme.json` file.

3. **Apply**: Load the theme JSON into `TDTheme`, and your beautiful custom theme is ready.
```dart
// Enable multi-theme support
TDTheme.needMultiTheme();
var jsonString = await rootBundle.loadString('assets/theme.json');
var _themeData = TDThemeData.fromJson('green', jsonString);
// ...
MaterialApp(
title: 'TDesign Flutter Example',
theme: ThemeData(
extensions: [_themeData]
),
home: MyHomePage(title: 'TDesign Flutter Components'),
);
```
### Dark Mode Support
Theme configurations generated by the Theme Generator support dark mode colors by default.
```dart
// Enable multi-theme support
TDTheme.needMultiTheme();
// ...
// Set three properties in MaterialApp as follows. If you have custom theme properties, you can modify them using the copyWith() method.
// Note: Theme switching needs to be implemented by the business side, e.g., using Provider. See tdesign-flutter/tdesign-component/example/lib/component_test/dark_test.dart for reference.
MaterialApp(
theme: _themeData.systemThemeDataLight,
darkTheme: _themeData.systemThemeDataDark,
themeMode: themeModeProvider.themeMode,
// ...
)
```
## đ Internationalization
TDesign Flutter does not have built-in internationalization, but supports integration with Flutter's i18n capabilities. You can extend the `TDResourceDelegate` class, which abstracts all text resources inside the components, override the methods to get text for internationalization, and inject it via `TDTheme.setResourceBuilder`.
### Quick Setup
1. **Override `TDResourceDelegate` class:**
```dart
/// Internationalization resource delegate
class IntlResourceDelegate extends TDResourceDelegate {
IntlResourceDelegate(this.context);
BuildContext context;
/// Internationalization requires updating context each time
updateContext(BuildContext context) {
this.context = context;
}
@override
String get cancel => AppLocalizations.of(context)!.cancel;
@override
String get confirm => AppLocalizations.of(context)!.confirm;
}
```
2. **Inject `TDResourceDelegate` class:**
```dart
var delegate = IntlResourceDelegate(context);
return MaterialApp(
home: Builder(
builder: (context) {
// Set the text delegate. Internationalization only takes effect after MaterialApp is initialized, and context needs to be updated each time.
TDTheme.setResourceBuilder((context) => delegate..updateContext(context), needAlwaysBuild: true);
return MyHomePage(
title: AppLocalizations.of(context)?.components ?? '',
);
},
),
// Set internationalization
locale: locale,
supportedLocales: AppLocalizations.supportedLocales,
localizationsDelegates: AppLocalizations.localizationsDelegates,
);
```
3. For Flutter internationalization configuration, please refer to the official documentation: [Internationalizing Flutter apps](https://docs.flutter.dev/ui/accessibility-and-internationalization/internationalization)
## â FAQ
### Text Centering
- **v0.1.4**: After Flutter 3.16, rendering engine changes caused font offset issues with `forceVerticalCenter`. Disable this by setting `kTextForceVerticalCenterEnable=false`.
- **v0.1.5**: Adapted Chinese text centering for both Android and iOS. For other languages, customize by overriding `TDTextPaddingConfig`'s `paddingRate` and `paddingExtraRate`. See `TDTextPage` for usage.
## đ More Examples
For more usage examples, refer to [example/lib/page/](https://github.com/Tencent/tdesign-flutter/tree/develop/tdesign-component/example/lib/page)
## đ TDesign Component Libraries
TDesign provides component libraries for other platforms and frameworks:
| Platform | Repository |
|----------|------------|
| Vue 2.x | [tdesign-vue](https://github.com/Tencent/tdesign-vue) |
| Vue 3.x | [tdesign-vue-next](https://github.com/Tencent/tdesign-vue-next) |
| React | [tdesign-react](https://github.com/Tencent/tdesign-react) |
| Vue 3.x Mobile | [tdesign-mobile-vue](https://github.com/Tencent/tdesign-mobile-vue) |
| React Mobile | [tdesign-mobile-react](https://github.com/Tencent/tdesign-mobile-react) |
| WeChat Miniprogram | [tdesign-miniprogram](https://github.com/Tencent/tdesign-miniprogram) |
## đ¤ Contributing
Contributions are welcome! Please read the [contributing guidelines](CONTRIBUTING.md) before submitting your [Pull Request](https://github.com/Tencent/tdesign-flutter/pulls).
<a href="https://github.com/Tencent/tdesign-flutter/graphs/contributors">
<img src="https://contrib.rocks/image?repo=Tencent/tdesign-flutter" />
</a>
## đŦ Feedback
Create [GitHub Issues](https://github.com/Tencent/tdesign-flutter/issues) or scan the QR code to join our user groups:
<img src="https://tdesign.tencent.com/flutter/assets/qrcode/feedback.png" width="200" />
## đ Acknowledgements
TDesign Flutter depends on the following component libraries. We appreciate the authors for their open-source contributions:
- [easy_refresh](https://pub.dev/packages/easy_refresh)
- [flutter_swiper](https://pub.dev/packages/flutter_swiper)
- [flutter_slidable](https://pub.dev/packages/flutter_slidable)
- [image_picker](https://pub.dev/packages/image_picker)
## đ License
TDesign Flutter is licensed under the [MIT License](LICENSE).
", Assign "at most 3 tags" to the expected json: {"id":"10186","tags":[]} "only from the tags list I provide: [{"id":77,"name":"3d"},{"id":89,"name":"agent"},{"id":17,"name":"ai"},{"id":54,"name":"algorithm"},{"id":24,"name":"api"},{"id":44,"name":"authentication"},{"id":3,"name":"aws"},{"id":27,"name":"backend"},{"id":60,"name":"benchmark"},{"id":72,"name":"best-practices"},{"id":39,"name":"bitcoin"},{"id":37,"name":"blockchain"},{"id":1,"name":"blog"},{"id":45,"name":"bundler"},{"id":58,"name":"cache"},{"id":21,"name":"chat"},{"id":49,"name":"cicd"},{"id":4,"name":"cli"},{"id":64,"name":"cloud-native"},{"id":48,"name":"cms"},{"id":61,"name":"compiler"},{"id":68,"name":"containerization"},{"id":92,"name":"crm"},{"id":34,"name":"data"},{"id":47,"name":"database"},{"id":8,"name":"declarative-gui "},{"id":9,"name":"deploy-tool"},{"id":53,"name":"desktop-app"},{"id":6,"name":"dev-exp-lib"},{"id":59,"name":"dev-tool"},{"id":13,"name":"ecommerce"},{"id":26,"name":"editor"},{"id":66,"name":"emulator"},{"id":62,"name":"filesystem"},{"id":80,"name":"finance"},{"id":15,"name":"firmware"},{"id":73,"name":"for-fun"},{"id":2,"name":"framework"},{"id":11,"name":"frontend"},{"id":22,"name":"game"},{"id":81,"name":"game-engine "},{"id":23,"name":"graphql"},{"id":84,"name":"gui"},{"id":91,"name":"http"},{"id":5,"name":"http-client"},{"id":51,"name":"iac"},{"id":30,"name":"ide"},{"id":78,"name":"iot"},{"id":40,"name":"json"},{"id":83,"name":"julian"},{"id":38,"name":"k8s"},{"id":31,"name":"language"},{"id":10,"name":"learning-resource"},{"id":33,"name":"lib"},{"id":41,"name":"linter"},{"id":28,"name":"lms"},{"id":16,"name":"logging"},{"id":76,"name":"low-code"},{"id":90,"name":"message-queue"},{"id":42,"name":"mobile-app"},{"id":18,"name":"monitoring"},{"id":36,"name":"networking"},{"id":7,"name":"node-version"},{"id":55,"name":"nosql"},{"id":57,"name":"observability"},{"id":46,"name":"orm"},{"id":52,"name":"os"},{"id":14,"name":"parser"},{"id":74,"name":"react"},{"id":82,"name":"real-time"},{"id":56,"name":"robot"},{"id":65,"name":"runtime"},{"id":32,"name":"sdk"},{"id":71,"name":"search"},{"id":63,"name":"secrets"},{"id":25,"name":"security"},{"id":85,"name":"server"},{"id":86,"name":"serverless"},{"id":70,"name":"storage"},{"id":75,"name":"system-design"},{"id":79,"name":"terminal"},{"id":29,"name":"testing"},{"id":12,"name":"ui"},{"id":50,"name":"ux"},{"id":88,"name":"video"},{"id":20,"name":"web-app"},{"id":35,"name":"web-server"},{"id":43,"name":"webassembly"},{"id":69,"name":"workflow"},{"id":87,"name":"yaml"}]" returns me the "expected json"