Languages

Menu
Sites
Language
Tizen wearable (non XAML)

Hi, I'm using navigationpage of xamarin to display CircleListView, the structure is MainPage->NavigationPage->CirclePage->CircleListView. And it seems that CircleListView is only fill half of the screen, how to make it full screen ?

Thanks

View Selected Answer

Responses

2 Replies
Mark as answer
Marc Nunes

A Navigation page has a Navigation Bar, That is the space you are seing that is pushing the content down, making it seem it has half a page.

If you want to hide the Navigation Bar, on the constructor of one of the pages that you are navigating into, add:

 

NavigationPage.SetHasNavigationBar(this, false);

 

Tizen is me

Thanks Marc, you're correct