I'm currently working on customizing the ActionBar for my nativescript-vue app. I have implemented FlexBoxLayout within the ActionBar, but I am facing an issue where the icon and title of the bar are not aligning to the left as intended; instead, they appear centered.
Here is a snippet of my code:
<Page style="background-color:rgb(245,245,245);">
<ActionBar>
<FlexboxLayout style="width:100%; height:100%; background-color:blue; flex-direction:row; justify-content:flex-start; align-items:center;">
<Label text="Pacome" fontSize="24" />
</FlexboxLayout >
</ActionBar>
<FlexboxLayout style="flex-direction:column; align-items:center; justify-content:center; background-color:rgb(245,245,245);">
<!--<FlexboxLayout style="width:100%; height:90px; padding:20px; background-color:blue; flex-direction:row; justify-content:flex-start; align-items:center;">
<Label :text="'fa-facebook-f' | fonticon" class="fa-brands icon" style="margin:0px 20px 0px 0px;"/>
<Label :text="'fa-bars' | fonticon" class="fa c_light" style="font-size:25; margin:0px 20px 0px 0px;"/>
<Label class="c_light" text="Pacome" style="font-size:25;" />
</FlexboxLayout >
<Label class="c_normal" text="Pacomer" style="font-size:25;" />-->
</FlexboxLayout >
</Page>