Skip to content
Snippets Groups Projects
Commit 95eb01d9 authored by Nicolas Pomepuy's avatar Nicolas Pomepuy
Browse files

Temporary fix for BottomSheet style due to material lib issue

This is a temporary fix that has to be reverted when this bug is fixed:
https://github.com/material-components/material-components-android/issues/1086
parent 1e0fcfd0
No related branches found
No related tags found
1 merge request!510Temporary fix for BottomSheet style due to material lib issue
Pipeline #15003 failed with stage
in 18 minutes and 21 seconds
<?xml version="1.0" encoding="UTF-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppModalStyle" parent="Widget.MaterialComponents.BottomSheet.Modal">
<!-- fixme : We'll have to revert to Widget.MaterialComponents.BottomSheet.Modal when this issue is fixed: https://github.com/material-components/material-components-android/issues/1086-->
<style name="AppModalStyle" parent="Widget.Design.BottomSheet.Modal">
<item name="android:background">@drawable/bottom_sheet_background</item>
</style>
......
......@@ -578,7 +578,8 @@
</style>
<style name="AppModalStyle" parent="Widget.MaterialComponents.BottomSheet.Modal">
<!-- fixme : We'll have to revert to Widget.MaterialComponents.BottomSheet.Modal when this issue is fixed: https://github.com/material-components/material-components-android/issues/1086-->
<style name="AppModalStyle" parent="Widget.Design.BottomSheet.Modal">
</style>
<style name="Theme.VLC.BottomSheetTitle">
......
......@@ -47,6 +47,8 @@ ext {
androidxRecyclerviewVersion = '1.1.0'
androidxMediaVersion = '1.1.0'
androidxLeanbackVersion = '1.0.0'
//fixme : When we update this dep, please verify of this issue is fixed: https://github.com/material-components/material-components-android/issues/1086
// if so, revert application/vlc-android/res/values[-v21]/styles.xml -> AppModalStyle
androidxMaterialVersion = '1.1.0-rc02'
constraintLayoutVersion = '1.1.3'
archVersion = '2.1.0'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment