horizontal and vertical scrollbars do not work as smoothly #4178
-
QuestionI can click on the Scroll Thumb on the vertical and horizontal scrollbar but I can't move it. I have to click on the area on the scrollbar, but that doesn't work as smoothly and seems a bit buggy to me. Since the latest update (0.24.1), the scrollbar doesn't work as it should. Code samplescrollable_table = ft.Container(
content=ft.Column(
controls=[
ft.Row(
controls=[
ft.Container(
content=self.table,
width=1000
)
],
expand=True,
scroll=ft.ScrollMode.ALWAYS, #horizontal
)
],
scroll=ft.ScrollMode.ALWAYS, #vertical
),
height=380, #
width=1000
) Error messageNo response ------------------------------------------------------
|
Beta Was this translation helpful? Give feedback.
Answered by
ndonkoHenri
Oct 18, 2024
Replies: 1 comment 3 replies
-
On which OS are you? can you share runnable code that repoduces the issue? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you try the latest pre-release:
pip install flet --pre -U
If you face any issues, please provide repro code and possibly a screen record.