update updates the visual state the list and its items
()
| 443 | |
| 444 | // update updates the visual state the list and its items |
| 445 | func (li *List) update() { |
| 446 | |
| 447 | // Update the list items styles |
| 448 | for _, item := range li.items { |
| 449 | item.(*ListItem).update() |
| 450 | } |
| 451 | } |
| 452 | |
| 453 | // |
| 454 | // ListItem methods |
no outgoing calls
no test coverage detected