# fluent_ui **Repository Path**: mirrors_bdlukaa/fluent_ui ## Basic Information - **Project Name**: fluent_ui - **Description**: Implements Microsoft's WinUI3 in Flutter. - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2023-02-25 - **Last Updated**: 2026-04-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
Design beautiful native Windows apps using Flutter
Unofficial implementation of Windows UI for Flutter. It's written based on the official documentation.
OR
```yaml dependencies: fluent_ui: git: https://github.com/bdlukaa/fluent_ui.git ``` Finally, run `dart pub get` to download the package. Projects using this library should use the stable channel of Flutter --- ### Accent color Common controls use an accent color to convey state information. [Learn more](https://docs.microsoft.com/en-us/windows/uwp/design/style/color#accent-color). By default, the accent color is `Colors.blue`. However, you can also customize your app's accent color to reflect your brand: ```dart FluentThemeData( accentColor: Colors.blue, ) ``` To use the system's accent color, you can use the plugin [system_theme](https://pub.dev/packages/system_theme). It has support for the Android, iOS, Web, MacOS, Windows and Linux (GTK 3+) platforms. ```dart import 'package:system_theme/system_theme.dart'; FluentThemeData( accentColor: AccentColor.swatch({ 'darkest': SystemTheme.accentColor.darkest, 'darker': SystemTheme.accentColor.darker, 'dark': SystemTheme.accentColor.dark, 'normal': SystemTheme.accentColor.accent, 'light': SystemTheme.accentColor.light, 'lighter': SystemTheme.accentColor.lighter, 'lightest': SystemTheme.accentColor.lightest, }), ) ``` ## Localization FluentUI widgets currently supports out-of-the-box an wide number of languages, including: - Arabic (@dmakwt) - Bahasa Indonesia (@ekasetiawans) - Belarusian (@superkeka) - Czech (@morning4coffe-dev) - Croatian (@ZeroMolecule) - Dutch (@h3x4d3c1m4l) - English - French (@WinXaito) - German (@larsb24) - Greek (@pana-g) - Hebrew (@yehudakremer) - Hindi (@alexmercerind) - Hungarian (@RedyAu) - Italian (@patricknicolosi) - Japanese (@chari8) - Korean (@dubh3) - Malay (@jonsaw) - Nepali (@larence-cres) - Persian (@xmine64) - Polish (@madik7) - Portuguese (@bdlukaa) - Romanian (@antoniocranga) - Russian (@raitonoberu) - Simplified Chinese (@zacksleo, @rk0cc) - Tagalog (@Yivan000) - Tamil (@sarankumar-ns) - Traditional Chinese (@zacksleo, @rk0cc) - Thai (@lines-of-codes) - Turkish (@timurturbil) - Spanish (@henry2man) - Ukranian (@vadimbarda) - Urdu (@sherazahmad720) - Uzbek (@bobobekturdiyev) If a language is not supported, your app may crash. You can [add support for a new language](#contributing-new-localizations) or use a supported language. [Learn more](https://github.com/bdlukaa/fluent_ui/issues/371) ## Contribution Feel free to [file an issue](https://github.com/bdlukaa/fluent_ui/issues/new) if you find a problem or [make pull requests](https://github.com/bdlukaa/fluent_ui/pulls). All contributions are welcome :) ### Contributing new localizations In [PR#216](https://github.com/bdlukaa/fluent_ui/pull/216) we added support for new localizations in FluentUI Widgets. If you want to contribute adding new localizations please follow this steps: - [Fork the repo](https://github.com/bdlukaa/fluent_ui/fork) - Copy `lib/l10n/intl_en.arb` file into `lib/l10n` folder with a new language code, following [this list of ISO 859-1 codes](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) - Update the contents in the newly created file. Specially, please update the `@locale` value with the corresponding ISO code. - Run your project and code generation will take place or run command `flutter gen-l10n` - When you're done, [make a new pull request](https://github.com/bdlukaa/fluent_ui/pulls) More about [Localization in the Flutter Official Documentation](https://docs.flutter.dev/development/accessibility-and-localization/internationalization) ### Acknowledgements Irrespective of order, thanks to all the people below for contributing with the project. It means a lot to me :) - [@HrX03](https://github.com/HrX03) for the `Acrylic`, `FluentIcons` generator and `_FluentTextSelectionControls` implementation. - [@raitonubero](https://github.com/raitonoberu) `ProgressBar` and `ProgressRing` implementation - [@alexmercerind](https://github.com/alexmercerind) for the [flutter_acrylic](https://github.com/alexmercerind/flutter_acrylic) plugin, used on the example app - [@leanflutter](https://github.com/leanflutter) for the [window_manager](https://github.com/leanflutter/window_manager) plugin, used on the example app. - [@henry2man](https://github.com/henry2man) for the [localization support](https://github.com/bdlukaa/fluent_ui/pull/216) - [@klondikedragon](https://github.com/klondikedragon) for [`CommandBar` implementation](https://github.com/bdlukaa/fluent_ui/pull/232)