Bookmarks screen

This commit is contained in:
Koitharu
2022-07-07 16:36:47 +03:00
parent 49634a2f52
commit 6df56c2d77
30 changed files with 754 additions and 64 deletions

View File

@@ -138,4 +138,10 @@ fun <T : View> ViewGroup.findViewsByType(clazz: Class<T>): Sequence<T> {
}
}
}
}
fun RecyclerView.invalidateNestedItemDecorations() {
findViewsByType(RecyclerView::class.java).forEach {
it.invalidateItemDecorations()
}
}