This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Description
Hello, I'm trying start my Anko Application on API 29, In the cycle I create several identical views, and each is located to the right of the previous one, in theory. But in practice, the rightOf() flag does not work correctly, and the windows simply stick together. What to do?
for (e in 1001..1018) {
themedTextView("num", cellStyles[2]) {
id = e
}.lparams(dip(cellSize.first), dip(numberSize)){
rightOf(e - 1)
}
}