Kennyc1012 / BottomSheetMenu

BottomSheetMenu style dialogs for Android
Apache License 2.0
887 stars 99 forks source link

Top padding remains visible after we define empty title #74

Open ffsouza opened 10 months ago

ffsouza commented 10 months ago

A strange top padding remains visible even after we define empty title

I realized the issue happens if we define the background

 <style name="BottomSheetMenuStyle" parent="@style/Theme.BottomSheetMenuDialog.Light">
     <item name="bottomSheetStyle">@style/AppModalStyle</item>
 </style>

<style name="AppModalStyle">
    <item name="android:background">@drawable/background_border</item>
</style>

where the background is a drawable with rounded corners <?xml version="1.0" encoding="utf-8"?>

this issue didn't happen when using an older version '3.3.0' . It started to reproduce after I update the version to 5.1, and I realized this is reproducible also using the version 5.0

Kennyc1012 commented 10 months ago

Can you post a screenshot so I can see what the issue is exactly? Not quiet sure what to be looking for. Can you also post how you are setting up and showing the bottom sheet?