mirror of
https://github.com/rivo/tview.git
synced 2026-04-27 13:55:51 +03:00
[GH-ISSUE #737] TextView not Scroll #541
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tview#541
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @dizanetti on GitHub (Jun 28, 2022).
Original GitHub issue: https://github.com/rivo/tview/issues/737
Hello Rivo, I'm developing an application to perform some actions in kubernetes with tview.
I have a text that I want to display and it is very large, but it does not scroll.
the text view is inside a Page.
https://github.com/dizanetti/golang/blob/main/prompt-interface/menu.go
https://github.com/dizanetti/golang/blob/main/prompt-interface/main.go
var describePod = tview.NewTextView().SetTextColor(tcell.ColorGreen).SetScrollable(true)is there something blocking the scroll?
I thank the attention