How to increase the ft.TextField height? #1381
-
The height parameter inside the ft.TextField() results in no change in height. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 4 replies
-
What results are trying to achieve? |
Beta Was this translation helpful? Give feedback.
-
Hi @FeodorFitsner, I am trying to create application with two TextField, aligned side by side, which is capable of taking in paragraph. I am seeing samples of textfield here: https://flet.dev/docs/controls/textfield/ Sample image: |
Beta Was this translation helpful? Give feedback.
-
So, you want to stretch text vertically? |
Beta Was this translation helpful? Give feedback.
-
Yes, something like that. |
Beta Was this translation helpful? Give feedback.
-
You can use import flet as ft
def main(page: ft.Page):
page.add(
ft.Text("Hello, world!", size=40, scale=ft.Scale(scale_y=2.0)),
)
ft.app(main) |
Beta Was this translation helpful? Give feedback.
Hey @Mayurji, check this markdown editor I built back then.
It somehow resembles what you are tying to achieve.
Hope it helps.