Replies: 2 comments 3 replies
-
If you don't want off-screen components to be instantiated, consider using CollectionView. Even better, some third-party libraries such as SyncFusion or Telerik have even more optimized CollectionView variants in their library. |
Beta Was this translation helpful? Give feedback.
2 replies
-
If you have specific requirements, you can build the logic yourself. Define and track the geometry while implementing your own approach to distinguishing on-screen from off-screen. The parent control can be a simple AbsoluteLayout or Grid. With MVVM, you can manage children using BindableLayout. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Some under-the-hood questions regarding Maui performance...
Does Maui actually draw content with lower ZIndex?
Does Maui draw content outside the window (e.g., content in a ScrollView content)?
My (subjective) testing indicates Maui does consume compute cycles doing this. If that is correct, is there any way to tell Maui to stop doing that!
Beta Was this translation helpful? Give feedback.
All reactions