Skip to content

Instantly share code, notes, and snippets.

View Ahmad-Hamwi's full-sized avatar
🎯
Focusing

Ahmad Hamwi Ahmad-Hamwi

🎯
Focusing
View GitHub Profile
@Ahmad-Hamwi
Ahmad-Hamwi / setDecorFitSystemWindow.kt
Created July 28, 2021 18:14
A useful binding adapter that stretch the views boundaries to draw behind the system bar insets (aka going edge-to-edge)
/**
* example:
*
* <!--parent container (that's expanded to fullscreen)-->
* <androidx.constraintlayout.widget.ConstraintLayout
* android:layout_width="match_parent"
* android:layout_height="match_parent"
* ...
* app:setDecorFitSystemWindow="@{true}">
* ...
@Ahmad-Hamwi
Ahmad-Hamwi / applySystemBarsInsetOnPadding.kt
Created July 28, 2021 18:11
A useful binding adapter that will update the view's padding according to the system bar insets.
/**
* Example:
*
* <!--parent container (that's expanded to fullscreen)-->
* <androidx.constraintlayout.widget.ConstraintLayout
* android:layout_width="match_parent"
* android:layout_height="match_parent"
* ...
* app:applySystemBarsInsetOnPadding="@{true}">
* ...