Jump to: navigation, search

Changes


Xamarin XAML

773 bytes added, 3 July
/* Known issues */
= Known issues =
 
=== Headlesslayout style in custom UBIKThemes causing problems ===
 
In our default UBIKThemes, we are currently using this style for a headless layout:
 
<syntaxhighlight lang="xml">
<Style x:Key="HeadlessLayout" TargetType="Layout">
<Setter Property="CompressedLayout.IsHeadless">
<Setter.Value>
<OnPlatform
x:TypeArguments="x:Boolean"
Android="True"
WinPhone="False"
iOS="False" />
</Setter.Value>
</Setter>
</Style>
</syntaxhighlight>
 
<br/>
In a lot of cases, this style also exists in many custom UBIKThemes, this could cause an issue.
The best case would be not to have it in the custom themes file because it's unnecessary if you don't want to change anything here.
=== DataTrigger to set Footer Properties in a ListView ===
89
edits