Skip to content

Instantly share code, notes, and snippets.

View ahmedmoussa8's full-sized avatar
🎯
Focusing

Ahmed M. ElShafei ahmedmoussa8

🎯
Focusing
View GitHub Profile
@arcadefire
arcadefire / bottomsheet.kt
Created September 12, 2021 12:50
Bottom sheet
enum class States {
EXPANDED,
COLLAPSED
}
@ExperimentalMaterialApi
@Composable
fun FullHeightBottomSheet(
header: @Composable () -> Unit,
body: @Composable () -> Unit