-
-
Notifications
You must be signed in to change notification settings - Fork 474
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🐛 Combobox animation is not correct #379
Comments
You mean |
Uhh, not sure, I need to check that. ComboBox/DropDown is a change since fluent_ui 3.8.0 ? Edit: in fact, it certainly ComboBox, but I will check tomorrow |
Yup, that's a ComboBox: My code (created when I had fluent_ui <2.8), so maybe I do not need DisableAcrylic: SizedBox(
width: 1000, // Max width, like W11 parameters style
child: ListView(
children: [
ListTile(
title: const Text('Thème (luminosité)'),
subtitle: const Text(
'Permet de définir le thème de l\'application (clair, sombre, système)'),
trailing: SizedBox(
width: 200,
//----
child: DisableAcrylic(
child: Combobox<ThemeMode>(
value: model.themeMode,
items: model.themeModeValues,
onChanged: model.themeModeChanged,
),
),
//----
),
),
],
),
), |
Ok, after testing, removing And the freeze-problem is still present. |
Are you running it in debug mode? Can you try profile or release mode? |
I'm in debug mode, but that was work before. I see the same effect on the web demo (and this is release mode..) https://bdlukaa.github.io/fluent_ui/ -> Forms -> Color ComboBox it looks more like an animation synchronization problem than a freeze problem |
looks like it was introduce by this commit |
Describe the bug
Dropdown has transparent effect and close is delayed, see the gif below:
After update fluent_ui dep (currently on master).
(Windows 10)
The text was updated successfully, but these errors were encountered: