Uno.UI - Performance
This article lists various performance tips to optimize your Uno Platform application.
Here's what to look for:
- Make sure to choose the right renderer (Skia or Native) for your application, depending on the feature set you'll be using. 
- Make sure to always have the simplest visual tree. There's nothing faster than something you don't draw. 
- Reduce panels in panels depth. Use Grids and relative panels where possible. 
- Force the size of images anywhere possible, using explicit - Widthand- Heightproperties.
- Collapsedelements are not considered when measuring and arranging the visual tree, which makes them almost costless. Consider- x:Loadbelow for further optimizations.
- When binding or animating (via - VisualState.Setters) the- Visibilityproperty, make sure to enable lazy loading:- x:Load="False".
- Use - x:Load={x:Bind MyVisibility}where appropriate as toggling from- trueto- falseeffectively removes a part of the visual tree from memory. Note that setting back to true re-creates the visual tree.
- ListViewand- GridView- Don't use template selectors inside the ItemTemplate, prefer using the - ItemTemplateSelectoron- ListView/- GridView.
- The default - ListViewItemand- GridViewItemstyles are very feature-rich, yet that makes them quite slow. For instance, if you know that you're not likely to use selection features for a specific ListView, create a simpler ListViewItem style that some visual states, or the elements that are only used for selection.
- If items content frequently change (e.g. live data in TextBlock) on iOS and Android, ListView items rendering can require the use of the - not_win:AreDimensionsConstrained="True"uno-specific property.- This attribute prevents items in a list from requesting their parent to be re-measured when their properties change. It's safe to use the - AreDimensionsConstrainedproperty when items always have the same size regardless of bound data, and the items and list are stretched in the non-scrolling direction. If item sizes can change when the bound data changes (eg, if they contain bound text that can wrap over multiple lines, images of undetermined size, etc), or if the list is wrapped to the items, then you shouldn't set- AreDimensionsConstrainedbecause the list does need to remeasure itself when item data changes in that case.- You'll need to set the property on the top-level element of your item templates, as follows: - <ResourceDictionary xmlns:xamarin="http://uno.ui/xamarin" mc:Ignorable="d xamarin" ...> <DataTemplate x:Key="MyTemplate"> <Grid Height="44" not_win:AreDimensionsConstrained="True"> ... </Grid> </DataTemplate>- Note that WinUI does not need this, and the issue is tracked in Uno here. 
- Avoid controls that contain inline popups, menus, or flyouts. Doing so will create as many popups as there are items visible on the screen. As in general, there is only one popup visible at a time, it is generally best to move the popup to a separate static resource. 
 
- Updating items in - ItemsControlcan be quite expensive, using- ItemsRepeateris generally faster at rendering similar content.
- Animations - Prefer Opacityanimations toVisibilityanimations (this avoids some measuring performance issues).- Unless the visual tree of the element is very big, where in this case Visibilityis better suited.
 
- Unless the visual tree of the element is very big, where in this case 
- Prefer Storyboard setters to ObjectAnimationUsingKeyFramesif there is only one key frame.
- Prefer changing the properties of a visual element instead of switching opacity or visibility of an element.
- Manually created - Storyboardinstances do not stop automatically. Make sure that if you invoke- Storyboard.Begin(), invoke- Storyboard.Stop()when the animated content is unloaded, otherwise resources may be spent animating invisible content.
- ProgressRingand- ProgressBarcontrols indeterminate mode generally consume rendering time. Make sure to set those to determinate modes when not visible.
- Troubleshooting of animations can be done by enabling the following logger: - builder.AddFilter("Windows.UI.Xaml.Media.Animation", LogLevel.Debug); builder.AddFilter("Microsoft.UI.Xaml.Media.Animation", LogLevel.Debug);- The logger will provide all the changes done to animated properties, with element names. 
 
 
- Prefer 
- Image Assets - Try using an image that is appropriate for the DPI and screen size.
- Whenever possible, specify and explicit Width and Height on Image.
- The pixel size of an image will impact the loading time of the image. If the image is intentionally blurry, prefer reducing the physical size of the image over the compressed disk size of the image.
 
- Paths - Prefer reusing paths, duplication costs Main and GPU memory.
- Prefer using custom fonts over paths where possible. Fonts are rendered extremely fast and have a very low initialization time.
 
- Bindings - Using x:Bindis generally faster as it involves less or no reflection.
- Prefer bindings with short paths.
- To shorten paths, use the DataContextproperty on containers, such asStackPanelorGrid.
- Adding a control to loaded PanelorContentControldoes propagate the parent's DataContext immediately. If the new control has itsDataContextimmediately overridden to something else, ensure to set the DataContext before adding the control to its parent. This will avoid having bindings be refreshed twice needlessly.
- Add the Windows.UI.Xaml.BindableAttributeorSystem.ComponentModel.BindableAttributeon non-DependencyObject classes.- When data binding to classes not inheriting from - DependencyObject, in Debug configuration only, the following message may appear:- The Bindable attribute is missing and the type [XXXX] is not known by the MetadataProvider. Reflection was used instead of the binding engine and generated static metadata. Add the Bindable attribute to prevent this message and performance issues.- This message indicates that the binding engine will fall back on reflection based code, which is generally slow. To compensate for this, Uno use the - BindableTypeProvidersSourceGenerator, which generates static non-generic code to avoid reflection operations during binding operations. This attribute is inherited and is generally used on ViewModel based classes.
 
 
- Using 
- 
- For - ListViewinstances with large templates, consider the use of x:Phase to reduce the number of bindings processed during item materialization.
- It is only supported for items inside - ListViewItemtemplates, it will be ignored for others.
- It is also supported as - not_win:Phaseon controls that do not have bindings. This feature is not supported by WinUI.
- It is only supported for elements under the - DataTemplateof a- ListViewItem. The attribute is ignored for templates of- ContentControlinstances, or any other control.
- When binding to Brushes with a solid color, prefer binding to the - Colorproperty like this if the brush type does not change:- <TextBlock Text="My Text"> <TextBlock.Foreground> <SolidColorBrush Color="{x:Bind Color, Mode=OneWay, FallbackValue=Red}" /> </TextBlock.Foreground> </TextBlock>
 
- Resources - Avoid using x:NameinResourceDictionaryas those force early instantiation of the resource
- Use Uno.XamlMerge.Taskto merge all top-levelApp.xamlresource dictionaries
 
- Avoid using 
WebAssembly specifics
- Building your application in Release configuration is critical to get the best performance. 
- Make sure to use the latest stable release of Uno.Wasm.Bootstrap packages 
- Enable AOT or PG-AOT to get the best performance. 
- Consider enabling the - Jiterpretermode for faster performance.
- When recording a PG-AOT profile, make sure to run through most of your application before saving the profile. 
- Adjusting the GC configuration may be useful to limit the collection runs on large allocations. Add the following to your - csprojfile:- <ItemGroup> <WasmShellMonoEnvironment Include="MONO_GC_PARAMS" Value="soft-heap-limit=512m,nursery-size=64m,evacuation-threshold=66,major=marksweep" /> </ItemGroup>- You can adjust the - nursery-sizeand- soft-heap-limitbased on your application's memory consumption characteristics. See the .NET GC configuration for more details.
- The size of the application can be reduced by: - Enabling the IL Linker
- Enabling XAML Resources Trimming
 
Android specifics
- Adjust the GC configuration by modifying the - environment.conffile with parameters matching your application
- Enable - LLVMin- Releasewith- -p:EnableLLVM=truefor better runtime performance at the expense of package size and longer compilation times
- Enable - Marshal Methodsin- Releasewith- -p:AndroidEnableMarshalMethods=trueto improve startup performance (.NET 8 +)
- Enable Startup Tracing by running the following: - dotnet add package Mono.AotProfiler.Android dotnet build -t:BuildAndStartAotProfiling # Wait until the app launches, then navigate around the most common screens dotnet build -t:FinishAotProfiling- This will produce a - custom.aprofin your project directory. Move the file to the- Androidfolder and add the following to your- csproj:- <ItemGroup> <AndroidAotProfile Include="Android/custom.aprof" /> </ItemGroup>
- Enable - Full AOTinstead of- Startup Tracingin- Releasewith- -p:AndroidEnableProfiledAot=falseto get the best runtime performance- This will make your package size significantly larger and your compilation times longer. - You may combine this with - -p:EnableLLVM=trueand- -p:AndroidEnableMarshalMethods=trueto get even better performance.
- Use String Resource Trimming to improve package size and startup time 
Skia Targets Specifics
- On Desktop targets, it's possible to change the composition refresh rate using FeatureConfiguration.CompositionTarget.FrameRate. The default value is 60 (frames per second).
- On all targets:
- It's possible to set DebugSettings.EnableFrameRateCounterinApp.OnLaunchedin order to view a top-left indicator. It indicates the current frames per second, as well as the time spent rendering a composition frame, in milliseconds.
- If the indicator does not change, this means that the UI is not refreshing.
- If it is, but nothing is changing visually, it could be that a XAML or Composition animation is still running, see the ProgressRingsection in this document.
 
- It's possible to set 
Advanced performance Tracing
Profiling applications
A profiling guide for Uno Platform apps is available here.
FrameworkTemplatePool
The framework template pool manages the pooling of ControlTemplates and DataTemplates, and in most cases, the recycling of controls should be high.
- CreateTemplateis raised when a new instance of a template is created. This is an expensive operation that should be performed as rarely as possible.
- RecycleTemplateis raised when an active instance of a template is placed into the pool. This should happen often.
- ReuseTemplateis raised when a pooled template is provided to a control asking for a specific data template.
- ReleaseTemplateis raised when a pooled template instance has not been used for a while.
If the ReuseTemplate occurrences is low, this usually means that there is a memory leak to investigate.