Following your guide:
https://help.syncfusion.com/xamarin/popup/faq?cs-save-lang=1&cs-lang=xamlI tried to remove the shadow in a popup that I customized using a specific ContentTemplate.
I declared all the attributes that should remove the shadow, in this way:
<sfPopup:SfPopupLayout
xmlns:sfPopup="clr-namespace:Syncfusion.XForms.PopupLayout;assembly=Syncfusion.SfPopupLayout.XForms"
x:Name="popupLayout"
ShowOverlayAlways="False">
<sfPopup:SfPopupLayout.PopupView>
<sfPopup:PopupView
AnimationMode="Zoom"
ShowFooter="False"
ShowHeader="False"
AutoSizeMode="Height"
WidthRequest="{Binding PopupWidth}">
<sfPopup:PopupView.PopupStyle>
<sfPopup:PopupStyle
OverlayOpacity="0"
OverlayColor="Transparent"
BorderColor="Transparent"
BorderThickness="0"
HasShadow="False">
<sfPopup:PopupStyle.CornerRadius>
<OnPlatform
x:TypeArguments="x:Int32"
Android="20"
iOS="10" />
</sfPopup:PopupStyle.CornerRadius>
</sfPopup:PopupStyle>
</sfPopup:PopupView.PopupStyle>
<sfPopup:PopupView.ContentTemplate>
/* HERE THERE IS MY CUSTOM LAYOUT */
</sfPopup:PopupView.ContentTemplate>
</sfPopup:PopupView>
</sfPopup:SfPopupLayout.PopupView>
but as you can see in this screenshot I continue to see a shadow under the popup:
the problema happens only in iOS, I'm using 18.1.0.54 version of sfPopupLayout