I build my new Zebble application on the android device, but when I use below code back button shows like this screenshot.
This is my code for navigation to another page.
await Nav.Forward<MyTestPage>(PageTransition.SlideUp);
And this is the result of above code on the android device.
After that, I tried to correct it with stylesheet on Android.scss file like below:
NavigationBar {
#Title {
text-align: left;
padding-left: 65px;
font-size: 20px;
font-weight: normal;
}
.back {
margin-bottom: 20px;
}
}
but nothing did not happen. Also, I review information on the link below, but I did not find anything could help me in this problem.