while following this tutorial https://xamarinhelp.com/xamarin-forms-toolbar/ I came across a little problem, the items are well displayed on Android, but on UWP toolbar is closed causing items to be "collapsed" thus hiding "items names" and leaving only a rectangle for the button, in order to show "Name" of each item I need to click the Ellipsis button (three dots that open the list of secondary items). Is there a way to to solve this?
<ContentPage.ToolbarItems >
<ToolbarItem Name="MenuItem1" Order="Primary" Text="Bases" Priority="3"/>
<ToolbarItem Name="MenuItem2" Order="Secondary" Text="Numericos" Priority="1"/>
<ToolbarItem Name="MenuItem2" Order="Secondary" Text="Sistema Internacional" Priority="1"/>
</ContentPage.ToolbarItems>

