Hi, I'm pretty new to Xamarin and have a question on how i should build my layout.
I want to build a single page application (cross-platform) with three sections. Each section will be pretty big so I'm thinking that it will be too much code for just one pagefile.
So can i load three different pages into one page or how should i approach this?
I also wonder if there is some sort of treeview that i can use, haven't found one yet.
here is an example of my grid-based layout.
@s0ckan I think all you need is 3 content view which can host different contents, so that your each contentview content can be loaded from separate file. You can create FormsXamlView by which you can separate the code of each sections which should reduce the page codes.
Treeview - > https://github.com/danvanderboom/Xamarin-Forms-TreeView you can try this
Answers
@s0ckan I think all you need is 3 content view which can host different contents, so that your each contentview content can be loaded from separate file. You can create FormsXamlView by which you can separate the code of each sections which should reduce the page codes.
Treeview - > https://github.com/danvanderboom/Xamarin-Forms-TreeView you can try this
Thanks @DK90 I will take a look at that. Just found that github project too