xamarin.forms - Xamarin Forms Navigation Page bar with only text (no icon) -
how can disable xamarin icon in navigation page bar , set title?
you can use remove icon.
actionbar.seticon(android.resource.color.transparent);
and set title can use code in c#
this.title="mypage"
or xaml put below attribute in contentpage node
title="mypage"
Comments
Post a Comment