English | 简体中文
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.
- 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
Android: Scan the QR code to download the preview app
Download link: 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
dart: ">=3.2.6 <4.0.0"
flutter: ">=3.16.0"Add the following to your pubspec.yaml:
dependencies:
tdesign_flutter: ^0.2.7import 'package:tdesign_flutter/tdesign_flutter.dart';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 useTDTheme.defaultData()for components that don't need to follow local themes.
// Colors
TDTheme.of(context).brandNormalColor
// Fonts
TDTheme.defaultData().fontBodyLargeTDesign icons are in TTF format and do not follow the theme:
Icon(TDIcons.activity)TDesign Flutter provides two flexible theming approaches:
Define theme properties directly in JSON format:
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
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, the Theme Generator supports "Dark Mode". See Dark Mode for details.
-
Generate: Visit TDesign Theme Generator, click the theme generator below, select your desired colors in the generator on the right, and click download.
-
Convert: You will get a
theme.cssfile. Place it intdesign-component/example/shell/theme/, modifycss2JsonTheme.dartwith your file name, theme name, and output path to generate atheme.jsonfile.
- Apply: Load the theme JSON into
TDTheme, and your beautiful custom theme is ready.
// 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'),
);Theme configurations generated by the Theme Generator support dark mode colors by default.
// 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,
// ...
)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.
- Override
TDResourceDelegateclass:
/// 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;
}- Inject
TDResourceDelegateclass:
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,
);- For Flutter internationalization configuration, please refer to the official documentation: Internationalizing Flutter apps
-
v0.1.4: After Flutter 3.16, rendering engine changes caused font offset issues with
forceVerticalCenter. Disable this by settingkTextForceVerticalCenterEnable=false. -
v0.1.5: Adapted Chinese text centering for both Android and iOS. For other languages, customize by overriding
TDTextPaddingConfig'spaddingRateandpaddingExtraRate. SeeTDTextPagefor usage.
For more usage examples, refer to example/lib/page/
TDesign provides component libraries for other platforms and frameworks:
| Platform | Repository |
|---|---|
| Vue 2.x | tdesign-vue |
| Vue 3.x | tdesign-vue-next |
| React | tdesign-react |
| Vue 3.x Mobile | tdesign-mobile-vue |
| React Mobile | tdesign-mobile-react |
| WeChat Miniprogram | tdesign-miniprogram |
Contributions are welcome! Please read the contributing guidelines before submitting your Pull Request.
Create GitHub Issues or scan the QR code to join our user groups:
TDesign Flutter depends on the following component libraries. We appreciate the authors for their open-source contributions:
TDesign Flutter is licensed under the MIT License.


