Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created April 27, 2022 05:53
Show Gist options
  • Save skydoves/70b0a68e47bc2225e7251bd30d505fe0 to your computer and use it in GitHub Desktop.
Save skydoves/70b0a68e47bc2225e7251bd30d505fe0 to your computer and use it in GitHub Desktop.
bottom_sheet_layout_example
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
...
</androidx.constraintlayout.widget.ConstraintLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment