Now I'm working on updating the UI of my app(XF for Android). I this UI solution for appbar(from source code Evolve 2016):
![]()
It looks beautiful and is implemented simply:
<ContentPage.Content>
<Grid RowSpacing="0" >
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<StackLayout BackgroundColor={StaticResource Primary}/>
<SearchBar Grid.Row=1/>
For existing navigation(Master-Detail) it works fine. But I add new toolbaritem "Test", by click I opened new page(no Master Detail):
await Navigation.PushAsync(new SponsorsPage(), true);
When I click back from this page(SponsorsPage) I get short flicker. This is example:
![]()
it does not last long, a split second. then the white line disappears. But it's unpleasant to use.
Any ideas? How can I improve this?