add UIKitComment, Comment element, upfill UIKitSubNav

This commit is contained in:
2022-01-28 14:01:06 +06:00
parent 7edea7bf74
commit 029a7804ad
7 changed files with 167 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
package dev.inmo.jsuikit.utils
fun <T> Array<T>.anyNotNull(): Boolean {
for (item in this) {
if (item != null) {
return true
}
}
return false
}