How do I hide the default toolbar button (three dots) in Xamarin.Forms UWP

Viewed 2377
2 Answers

As per the answer in the link that you mentioned in your post, did you tried to put below code in your App.Xaml of your UWP project:

<Application.Resources>
   <x:Double x:Key="AppBarExpandButtonThemeWidth">0</x:Double>
</Application.Resources>
Related