hi guys,
my hamburger slider is sliding under the map. i tried to use “RenderToTexture”, but im still unable to fix this problem. Can anyone help me with this?
Code----
<App>
<iOS.StatusBarConfig Style="Light" />
<EdgeNavigator>
<Panel ux:Name="sidebar" Edge="Left" Width="100%" Margin="0,0,56,0" Background="#37474F">
<WhileActive Threshold="0.01">
<Change _nativeViewHost.RenderToTexture="true" />
</WhileActive>
<Shadow ux:Name="shadow" Angle="180" Distance="8" Size="16" Color="#0000" />
<ActivatingAnimation>
<Change shadow.Color="#0004" />
<Change sidebarFade.Opacity="1" />
</ActivatingAnimation>
</Panel>
<DockPanel Color="#263238">
<Rectangle ux:Name="sidebarFade" Layer="Overlay" Color="#0005" Opacity="0" HitTestMode="None" />
<StackPanel Dock="Top" Color="#2196F3">
<Shadow Size="3" Distance="1" />
<StatusBarBackground />
<Panel Height="56">
<Hamburger Alignment="Left">
<Clicked>
<NavigateToggle Target="sidebar" />
</Clicked>
</Hamburger>
</Panel>
</StackPanel>
<NativeViewHost ux:Name="_nativeViewHost" RenderToTexture="false">
<MapView Latitude="59.911567" Longitude="10.741030" Zoom="10">
<MapMarker Latitude="59.911567" Longitude="10.741030" Label="Fuse HQ"/>
</MapView>
</NativeViewHost>
</DockPanel>
</EdgeNavigator>
</App>