Set the item delegate.
(d ItemDelegate)
| 353 | |
| 354 | // Set the item delegate. |
| 355 | func (m *Model) SetDelegate(d ItemDelegate) { |
| 356 | m.delegate = d |
| 357 | m.updatePagination() |
| 358 | } |
| 359 | |
| 360 | // VisibleItems returns the total items available to be shown. |
| 361 | func (m Model) VisibleItems() []Item { |
nothing calls this directly
no test coverage detected