[Question] Scroll doesn't working on Column #3989
-
QuestionI am adding Here you can see that's there more lines, but I can't scroll them Code sample# This is the function which is creating Column with ScrollMode
def sync_interface(page, lines_cnt, audioplayer):
lines_column = ft.Column(scroll=ft.ScrollMode.AUTO)
for i in range(lines_cnt):
string = split_text_on_lines(page)[i]
lines_column.controls.append(ft.Row(controls=[syncLine(i, string)]))
page.remove_at(2)
page.remove_at(2)
page.insert(2, lines_column)
page.controls[0].actions.append(editModeFAB(page, lines_cnt, audioplayer))
page.add(makeSyncFAB(audioplayer, page))
page.scroll = None
page.update() Error messageNo response ------------------------------------------------------
|
Beta Was this translation helpful? Give feedback.
Answered by
HuaxiaGoodBoy
Sep 18, 2024
Replies: 1 comment 1 reply
-
You need to specify the height of column |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Dzheremi2
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to specify the height of column