Reputation: 340
I am working on a project i which i want to design the view similar to that of settings app in Ipad. Before this i implemented the view by using Tabbed Page.Please give me any hint to design this kind of layout.I will be posting in this if i get any solutions for this.Please Help me if solution is available.Thanks in advance.
Upvotes: 0
Views: 237
Reputation: 865
You are probably looking for a SwitchCell implementation. Take a look at this: https://developer.xamarin.com/api/type/Xamarin.Forms.SwitchCell/
Upvotes: 1
Reputation: 3660
You can use a grid with two columns.
The first column
Contain a ListView with a Tap Event. When an element is tapped you shoud load or set view in second grid visible.
The Second column
You can have some ContentView related to each of your ListView items
Links
Upvotes: 0