MdListWidget

Subclass of widgets which only accept child of type T.

Author

Maanrifa Bacar Ali

Inheritors

Properties

Link copied to clipboard
open var parent: <Error class: unknown class>?

Functions

Link copied to clipboard
open override fun add(item: T)

Adds given item to the current widget.

open override fun add(position: Int, item: T)

Adds given item to the current widget at the given position.

Link copied to clipboard
open override fun addAll(items: List<T>)

Adds a list of items to the current widget.

Link copied to clipboard
open fun dispose()
Link copied to clipboard
open override fun disposeAll()

Removes all items from the current widget and disposes them.

Link copied to clipboard
open override fun remove(item: T)

Removes given item from the current widget.

Link copied to clipboard
open override fun removeAll()

Removes all items from the current widget.

Link copied to clipboard
open override fun removeAt(position: Int)

Removes the item from the current widget at the given position.

Link copied to clipboard
open fun render(): <Error class: unknown class>