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

BaseStackLayout() public method

public BaseStackLayout ( ) : Xamarin.Forms
return Xamarin.Forms
		public BaseStackLayout ()
		{
            Padding = new Thickness(10);
			VerticalOptions = LayoutOptions.FillAndExpand;
			HorizontalOptions = LayoutOptions.FillAndExpand;
		}
	}
BaseStackLayout