We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
New Dropdown control does not differ if dense=False or dense=True.
import flet as ft def main(page: ft.Page): page.theme_mode = ft.ThemeMode.LIGHT new_ddd = ft.Dropdown( options=[ ft.dropdown.Option("new DD, dense"), ], dense=True, ) new_dd = ft.Dropdown( options=[ ft.dropdown.Option("new DD, not dense"), ], ) old_ddd = ft.DropdownM2( options=[ ft.dropdown.Option("old DD, dense"), ], dense=True, ) old_dd = ft.DropdownM2( options=[ ft.dropdown.Option("old DD, not dense"), ], ) row = ft.Row([new_ddd, new_dd, old_dd, old_ddd]) page.add(row) ft.app(main)
run sample code
Dropdown control with dense=True should have "dense" look, like old one.
Windows
Windows 11
0.27.5
Yes, it used to work in a previous Flet version (please specify the version in additional details)
No response
[Paste your logs here]
The text was updated successfully, but these errors were encountered:
here's a PR to fix this: #5050
Sorry, something went wrong.
No branches or pull requests
Duplicate Check
Describe the bug
New Dropdown control does not differ if dense=False or dense=True.
Code sample
Code
To reproduce
run sample code
Expected behavior
Dropdown control with dense=True should have "dense" look, like old one.
Screenshots / Videos
Captures
Operating System
Windows
Operating system details
Windows 11
Flet version
0.27.5
Regression
Yes, it used to work in a previous Flet version (please specify the version in additional details)
Suggestions
No response
Logs
Logs
[Paste your logs here]
Additional details
No response
The text was updated successfully, but these errors were encountered: