Skip to content

Instantly share code, notes, and snippets.

@tejpratap46
Created January 1, 2021 18:45
Show Gist options
  • Save tejpratap46/f0f61e27016c411ee97b48b49ac06744 to your computer and use it in GitHub Desktop.
Save tejpratap46/f0f61e27016c411ee97b48b49ac06744 to your computer and use it in GitHub Desktop.
Transparent Bottom Sheet
<resources>
<style name="TransparentBottomSheetDialogTheme" parent="Theme.MaterialComponents.Light.BottomSheetDialog">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorSecondary">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="bottomSheetStyle">@style/TransparentBottomSheetStyle</item>
</style>
<style name="TransparentBottomSheetStyle" parent="Widget.Design.BottomSheet.Modal">
<item name="android:background">@android:color/transparent</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment