Skip to content

Instantly share code, notes, and snippets.

View DaChelimo's full-sized avatar

Andrew Chelimo DaChelimo

View GitHub Profile
@DaChelimo
DaChelimo / system_utils.kt
Created July 15, 2021 15:36
A list of utility functions relating with the Android System UI
private fun setupEdgeToEdgeUI() {
WindowCompat.setDecorFitsSystemWindows(window, false)
ViewCompat.setOnApplyWindowInsetsListener(binding.overlayView) { v, insets ->
insets.getInsets(WindowInsetsCompat.Type.systemBars()).let { v.setPadding(it.left, it.top, it.right, it.bottom) }
WindowInsetsCompat.CONSUMED
}
}