Why does the attribute scroll used for Column before have scroll, but now the latest version does not have scroll, so this attribute does not have effect.
The code is as follows:
import flet as ft
def main(page:ft.Page):
text=ft.Text('fsdffdsf\nfsdfdsfdsf\nfsdfsfdsdfsdfsd\newrewwew\nfdsfdsfdsfds\nfsfddsfdsfd\ndfsfdsfdsfds\n',width=100,height=100,text_align='center')
col=ft.Column(controls=[text],scroll=ft.ScrollMode.ALWAYS,width=100,height=100,alignment='center',horizontal_alignment='center')
page.add(col)
ft.app(target=main)
Why does the attribute scroll used for Column before have scroll, but now the latest version does not have scroll, so this attribute does not have effect.
The code is as follows:
import flet as ft
def main(page:ft.Page):
text=ft.Text('fsdffdsf\nfsdfdsfdsf\nfsdfsfdsdfsdfsd\newrewwew\nfdsfdsfdsfds\nfsfddsfdsfd\ndfsfdsfdsfds\n',width=100,height=100,text_align='center')
col=ft.Column(controls=[text],scroll=ft.ScrollMode.ALWAYS,width=100,height=100,alignment='center',horizontal_alignment='center')
page.add(col)
ft.app(target=main)