rotorgames / Rg.Plugins.Popup

Xamarin Forms popup plugin
MIT License
1.15k stars 337 forks source link

Weird white space on IOS on 2.0.0.14 #710

Open ShadowOfPhantom opened 2 years ago

ShadowOfPhantom commented 2 years ago

I use negative padding to make popup looking like: image With the new version (2.0.0.14) seems like popup page is avoiding system line on the bottom. please, take a look, it's ok for this and future releases? image

I downgraded the package to 2.0.0.13 and now popups looks as before

Phenek commented 2 years ago

Did you try to use only PaddingSide.Top?

C#

HasSystemPadding = true;
SystemPaddingSides = PaddingSide.Top;

Xaml

HasSystemPadding="True"
SystemPaddingSides="Top"