Skip to content

Instantly share code, notes, and snippets.

View costular's full-sized avatar

Diego Francisco Concepción costular

View GitHub Profile
@costular
costular / BottomMenuItem.kt
Last active June 20, 2022 12:05
Bottom sheet menu with recyclerview faster thanks to Kotlin
data class BottomMenuItem(
val resId: Int,
val name: String,
val action: () -> Unit
)