Changes
/* Device and Platform Responsiveness */
== Platform and Device -specific UI with OnPlatform and Platform Responsiveness OnIdiom ==
{{UnderConstructionStart}}
<br>
When it comes to the proper syntax, we should stick with the approaches mentioned in the [https://learn.microsoft.com/en-us/dotnet/maui/platform-integration/customize-ui-appearance?view=net-maui-9.0 official documentation].
Means, we should '''avoid''' using the single-tag syntax like ''<OnPlatform Android="..." iOS="..." />'' or ''<OnIdiom Phone="..." Desktop="..." />''like it was usual in Xamarin.
Instead, we should either use the '''multi-tag syntax''' or the '''inline syntax''' for OnPlatform / OnIdiom.
</tabs>
If the value contains any special characters like '''<code>"''' </code> or '''<code>,''' </code> or a '''string''' when using the OnIdiom or OnPlatform inline variant, it needs to be wrapped between <code>' '</code>. But be careful with using apostrophes - when using them around curly brackets {} it can lead to an error.
<tabs>
<tab name="Don't">