public App ()
		{
			CircleContentView circle = new CircleContentView ();

			// The root page of your application
			MainPage = new ContentPage {
				Content = new StackLayout {
					VerticalOptions = LayoutOptions.Center,
					HorizontalOptions = LayoutOptions.Center,
					Children = {
						circle
					}
				}
			};
		}
        public App()
        {
            CircleContentView circle = new CircleContentView();

            // The root page of your application
            MainPage = new ContentPage {
                Content = new StackLayout {
                    VerticalOptions   = LayoutOptions.Center,
                    HorizontalOptions = LayoutOptions.Center,
                    Children          =
                    {
                        circle
                    }
                }
            };
        }