how to disable the scroller of entry? #3235
-
I tried to run the code,and the entry shows vertical scroll and horizion scorll,even the entry is filled with nothing. could u please tell me how to disable the entry scroller,tks alot! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The |
Beta Was this translation helpful? Give feedback.
The
Resize
andMove
would be run by your container, so should not impact this usage.To disable the scroll functionality in
Entry
useWrapping = fyne.TextWrapOff
.Beware that if you do this the content will force the UI to grow if the text gets longer.