Victor G. Lima

Results 1 comments of Victor G. Lima

Same issue here (Flet 0.24.1). Here's a possible solution using `ScrollbarTheme`: ```python import flet as ft def main(page: ft.Page): # A possible solution using `ScrollbarTheme` page.theme = ft.Theme(scrollbar_theme=ft.ScrollbarTheme(thickness=0.0)) page.scroll =...