You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 1, 2024. It is now read-only.
Workaround for this issue is to create custom shell renderer:
public class CustomShellRenderer : ShellRenderer
{
public CustomShellRenderer(Context context)
: base(context) {}
protected override IShellFlyoutContentRenderer CreateShellFlyoutContentRenderer()
{
var flyoutContent = base.CreateShellFlyoutContentRenderer();
var cl = ((CoordinatorLayout)flyoutContent.AndroidView);
for (int index = 0; index < cl.ChildCount; index++)
{
var child = cl.GetChildAt(index);
if (child is AppBarLayout)
{
var view = (AppBarLayout)child;
view.OutlineProvider = null;
}
}
return flyoutContent;
}
}
The text was updated successfully, but these errors were encountered:
Description
Defining FlyoutHeader or FlyoutHeaderTemplate adds a bottom shadow/outline that shouldn't be there.
Basic Information
Screenshots
Reproduction Link
FlyoutHeaderShadow.zip
Workaround
Workaround for this issue is to create custom shell renderer:
The text was updated successfully, but these errors were encountered: