mirror of https://github.com/rivo/tview.git
Add Flex.Clear() method to remove all items
This commit is contained in:
parent
1316ea7a4b
commit
37b143d5fa
6
flex.go
6
flex.go
|
@ -101,6 +101,12 @@ func (f *Flex) RemoveItem(p Primitive) *Flex {
|
|||
return f
|
||||
}
|
||||
|
||||
// Clear removes all items from the flexbox
|
||||
func (f *Flex) Clear() *Flex {
|
||||
f.items = nil
|
||||
return f
|
||||
}
|
||||
|
||||
// ResizeItem sets a new size for the item(s) with the given primitive. If there
|
||||
// are multiple Flex items with the same primitive, they will all receive the
|
||||
// same size. For details regarding the size parameters, see AddItem().
|
||||
|
|
Loading…
Reference in New Issue