diff --git a/README.md b/README.md index 413fb9e..8578556 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ And we use it: ``` + Template="{StaticResource CustomSliderTemplate}"/> ``` The result: @@ -61,4 +61,14 @@ The result: We can use XAML Hot Reload to adjust the appearance: -![Using XAML Hot Reload](images/xamarinforms-edit-controltemplate.gif) \ No newline at end of file +![Using XAML Hot Reload](images/xamarinforms-edit-controltemplate.gif) + +Some **performance** related data (using Android): + +Memory +* 127545344 (121MB) - Slider +* 127246336 (121MB) - Slider (Composite) + +Startup time (Release AOT) +* 797ms - Slider +* 801ms - Slider (Composite) \ No newline at end of file diff --git a/src/Xamarin.Forms.Composite/Xamarin.Forms.Composite/App.xaml.cs b/src/Xamarin.Forms.Composite/Xamarin.Forms.Composite/App.xaml.cs index bb6678c..f7cf0f7 100644 --- a/src/Xamarin.Forms.Composite/Xamarin.Forms.Composite/App.xaml.cs +++ b/src/Xamarin.Forms.Composite/Xamarin.Forms.Composite/App.xaml.cs @@ -13,8 +13,8 @@ namespace Xamarin.Forms.Composite { InitializeComponent(); - MainPage = new TestCompositeView(); - //MainPage = new TestCompositePerfView(); + //MainPage = new TestCompositeView(); + MainPage = new TestCompositePerfView(); } protected override void OnStart()