From 67511ed858719ce8906929f7900e9c1080cd48d9 Mon Sep 17 00:00:00 2001 From: Mike Norman Date: Thu, 9 Jun 2016 12:54:53 -0500 Subject: Fixed code in Scrollview doc. Removed bug note in Easing. (#219) --- docs/Xamarin.Forms.Core/Xamarin.Forms/Easing.xml | 5 +---- docs/Xamarin.Forms.Core/Xamarin.Forms/ScrollView.xml | 19 ++++++++++--------- 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/docs/Xamarin.Forms.Core/Xamarin.Forms/Easing.xml b/docs/Xamarin.Forms.Core/Xamarin.Forms/Easing.xml index ffd8b16f..5b0dbb80 100644 --- a/docs/Xamarin.Forms.Core/Xamarin.Forms/Easing.xml +++ b/docs/Xamarin.Forms.Core/Xamarin.Forms/Easing.xml @@ -179,12 +179,9 @@ Xamarin.Forms.Easing - Jumps towards, and then bounces as it settles at the final value. (Note: Known bug in 1.0.0 release) + Jumps towards, and then bounces as it settles at the final value. - NOTE: The 1.0.0. release of has a known bug and runs backwards. The following graph shows the desired behavior, shortly to be released: - - diff --git a/docs/Xamarin.Forms.Core/Xamarin.Forms/ScrollView.xml b/docs/Xamarin.Forms.Core/Xamarin.Forms/ScrollView.xml index 9b93bd05..7f7fe4bb 100644 --- a/docs/Xamarin.Forms.Core/Xamarin.Forms/ScrollView.xml +++ b/docs/Xamarin.Forms.Core/Xamarin.Forms/ScrollView.xml @@ -34,16 +34,17 @@ The following example shows the creation of a ScrollView with a large in it. +for (int i = 0; i < 100; i++) +{ + stack.Children.Add(new Button { Text = "Button " + i }); +} + +MainPage = new ContentPage +{ + Content = new ScrollView { Content = stack } +};]]> Application developers should not nest one within another. Additionally, they should refrain from nesting them other elements that can scroll, such as . -- cgit v1.2.3