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
SearchBar.bar_border_side
Hi, I'm trying to set 'bar_border_side', but it has no effect in the SearchBar. I tried your own example, but nor border is displayed
import flet as ft def main(page: ft.Page): page.window.always_on_top = True page.theme_mode = ft.ThemeMode.LIGHT page.add( ft.SearchBar( controls=[ft.ListTile(title=ft.Text("Hello"))], view_header_height=30, on_tap=lambda e: e.control.open_view(), width=350, view_size_constraints=ft.BoxConstraints(max_height=170, max_width=350), bar_hint_text="Search", bar_padding=ft.padding.symmetric(10, 10), bar_border_side=ft.BorderSide(color=ft.Colors.BLUE, width=2), view_side=ft.BorderSide(color=ft.colors.RED, width=2), ) ) ft.app(main)
Originally posted by @ClearSafety in #4039 (comment)
The text was updated successfully, but these errors were encountered:
SearchBar
ndonkoHenri
Successfully merging a pull request may close this issue.
Hi,
I'm trying to set 'bar_border_side', but it has no effect in the SearchBar.
I tried your own example, but nor border is displayed
Originally posted by @ClearSafety in #4039 (comment)
The text was updated successfully, but these errors were encountered: