summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls/GalleryPages/ProgressBarGallery.cs
blob: 3190a3cfd9660a89ac9291e376fa701298f6c874 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Xamarin.Forms.Controls
{
	public class ProgressBarGallery : ContentPage
	{
		readonly StackLayout _stack;

		public ProgressBarGallery ()
		{
			_stack = new StackLayout ();

			var normal = new ProgressBar {
				Progress = 0.24
			};

			Content = _stack;

			_stack.Children.Add (normal);
		}
	}
}