mirror of
https://github.com/rivo/tview.git
synced 2026-04-26 21:35:54 +03:00
[GH-ISSUE #47] A possibility to show stacked boxes #35
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tview#35
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 @aellwein on GitHub (Jan 29, 2018).
Original GitHub issue: https://github.com/rivo/tview/issues/47
Hey,
short question: is there a possibility to show stacked boxes/frames (one over another). Like in here. If yes, how they are supposed to be arranged in
tview.Application?@rivo commented on GitHub (Jan 30, 2018):
Hi,
I would say your best bet is the
Pagesclass. ItsAddPage()function has a "resize" parameter which you can set tofalseso your box doesn't become full-screen.You will have to set the position and size of each of your boxes yourself then. There is no function that lays out boxes automatically like you requested. I think VladimirMarkelov/clui attempts to provide a more Windows-like interface if that's what you prefer.
Let me know if this helps.
@aellwein commented on GitHub (Jan 30, 2018):
Thanks, that is exactly what i've searched for.