i just googled very post but no useful article found. i have one SmartEntry application that have serval modules. one of them first dashboard page have nevigation button and last header row which was title + imagebuttons.
take a look
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="SmartEntry.DashBoard"
Title="Dashboard"
BackgroundColor="White">
<ContentPage.ToolbarItems>
<ToolbarItem Text="Dashboard" Order="Primary" Priority="0"></ToolbarItem>
<ToolbarItem Icon="logout_icon.png" Order="Primary" Priority="1" Clicked="ToolbarItem_Clicked"/>
</ContentPage.ToolbarItems>
<ContentPage.Content>
<StackLayout>
<Frame BackgroundColor="White" HasShadow="False">
<StackLayout Orientation="Vertical" Spacing="10" WidthRequest="100">
......
now i just want this Dashboard title to left align how i achieve this. screen:
how to get DASHBOARD align to left....