forEachChildrenWithIndex

inline fun forEachChildrenWithIndex(callback: (index: Int, child: View) -> Unit): Unit?

Deprecated

An older name of `forEachChildWithIndex`

Replace with

forEachChildWithIndex(callback)

Iterates all the children of this container in normal order of rendering. Providing an index in addition to the child to the callback.