text field bug #1953
text field bug
#1953
-
QuestionTheres a problem with flet text field, when you changed the width or height of the text field, the text you type in to the text field is blocked by some sort of block text shorter than text field text longer than text field as you can see, the text are behind some block Code sampleimport flet as ft,os
def main(page: ft.Page) -> None:
#Page setting
page.title = "youtube downloader"
page.horizontal_alignment = 'center'
page.vertical_alignment = 'center'
page.window_height = 400
page.window_width = 700
page.window_resizable = True
link_input = ft.TextField(label="Your link",width=page.window_width,height=40,border_radius=20,text_size=15)
page.add(link_input)
if __name__ == "__main__":
ft.app(target=main) Error messageNo response ------------------------------------------------------
|
Beta Was this translation helpful? Give feedback.
Answered by
ndonkoHenri
Oct 13, 2023
Replies: 1 comment 1 reply
-
Have a look at this: https://medium.com/@ndonkohenri/how-to-resize-flets-textfield-control-without-the-content-going-invisible-6d268a4d96e1 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
newor0599
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Have a look at this: https://medium.com/@ndonkohenri/how-to-resize-flets-textfield-control-without-the-content-going-invisible-6d268a4d96e1