viewTags

inline fun Style.viewTags(viewTags: SparseArray<out Any>): Style

Adds a set of View tags to the View this Component mounts to. Setting this property will cause the Component to be represented as a View at mount time if it wasn't going to already.

For each Int, Any pair in the given SparseArray, View.setTag(Int, Any) will be called. These tags can be retrieved with View.getTag(Int)

See android.view.View.setTag