Reputation: 2136
While playing with the youtube app I noticed this view appear when I clicked a button:
Is this a snackbar (white view at the bottom of screen) and if so how do I customise a normal snackbar to look like it?
Upvotes: 2
Views: 788
Reputation: 4779
These are bottom sheets, specifically modal bottom sheets. See the documentation here: https://material.google.com/components/bottom-sheets.html?authuser=0#bottom-sheets-modal-bottom-sheets
You'll need to add a LinearLayout
that acts as your BottomSheet
to a parent view of a CoordinatorLayout
Upvotes: 1