Changes
/* Device and Platform Responsiveness */
=== Complex values ===
* If the OnPlatform/OnIdiom value contains a '''Binding''', '''StaticResource''' or any other complex value in curly brackets, it is recommended to use the '''inline syntax'''. Although there is no official documentation, it seems to work more reliably according to our experience. However, the multi-tag syntax doesn't seem to work always for such cases.
* DynamicResource values are not supported in OnIdiom / OnPlatform.
* If the value contains any special characters like '''"''' or ''',''' or a '''string''' when using the inline variant (both OnPlatform and OnIdiom), it needs to be wrapped between '''' ''''
**The GridLengthTypeConverter is not accessible on the GridLength struct (https://github.com/dotnet/maui/issues/10894)
{{Attention|Whenever Unreliable Support: When using complex values like bindings or complex resources (basically everything in curly brackets) in the scope of OnPlatform or OnIdiom, there doesn't seem to be a general solution that reliably works in every casebehavior may vary across platforms. So it should be used carefully, and it can not be guaranteed that it always works as expected. To increase the possibility for Although it seems to work with the inline syntax according to our experiences, it is recommended to use the inline OnPlatform/OnIdiom syntaxtest these edge cases thoroughly.}}
{{UnderConstructionEnd}}