mirror of
https://github.com/rivo/tview.git
synced 2026-04-27 05:45:49 +03:00
[GH-ISSUE #763] Feature request: floating window/modal #556
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tview#556
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 @golangdojo99 on GitHub (Sep 27, 2022).
Original GitHub issue: https://github.com/rivo/tview/issues/763
Currently, a widget is set as root using
(*tview.Application).SetRootmethod and the current root widget can be changed can be using the same method. Only a single widget can be root at once, widgets like Flex and Grid allow users to layout widgets into a single widget and set it as root to display multiple widgets. However, there is no such widget that can "float" above the root widget and still display the content of the root widget as is.@rivo commented on GitHub (Sep 27, 2022):
Please check out
Pages.@golangdojo99 commented on GitHub (Sep 28, 2022):
Pageswidget can be used to switch between multiple widgets, not display one on top of the other while conserving the background of the widget that is at the bottom.@rivo commented on GitHub (Sep 28, 2022):
Yes, it can. Check out the Wiki:
https://github.com/rivo/tview/wiki/Modal