Blog.Mobile.Components.DrawerLayout.DrawerLayout C# (CSharp) Method

DrawerLayout() public method

public DrawerLayout ( ListView listView, IEnumerable views ) : System.Collections.Generic
listView ListView
views IEnumerable
return System.Collections.Generic
		public DrawerLayout(ListView listView, IEnumerable<BaseScrollView> views)
		{
			ListView = listView;
			Layouts = views.ToList();
			Padding = new Thickness (0);

		    CreateDrawerLayout();
			Children.Add(GetBaseLayout ());
		}