We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to be able to disable text wrapping on multitext Textfield
No response
The text was updated successfully, but these errors were encountered:
Flutter seems not to have a direct solution for this. However, with the help of this SO thread, I came up with this:
import flet as ft def main(page: ft.Page): page.add( ft.ListView( expand=True, horizontal=True, controls=[ ft.Container( width=1000, content=ft.TextField( hint_text="Enter your text here", keyboard_type=ft.KeyboardType.MULTILINE, text_vertical_align=ft.VerticalAlignment.START, border=ft.InputBorder.UNDERLINE, filled=True, fit_parent_size=True, ), ) ], ) ) ft.app(target=main)
You can't try it right now, as it makes use of a prop which will be available when #4105 gets merged.
Sorry, something went wrong.
You can give the above code a try.
ndonkoHenri
No branches or pull requests
Duplicate Check
Describe the requested feature
I want to be able to disable text wrapping on multitext Textfield
Suggest a solution
No response
Screenshots
No response
Additional details
No response
The text was updated successfully, but these errors were encountered: