Changes

Mobile XAML

306 bytes removed, 14 August
/* Issues with SfPullToRefresh in combination with SfListView in MAUI */
Due to a third-party issue, problems may occur on MAUI for Android when using the SfPullToRefresh control in combination with the SfListViewExt. This can result in navigation sometimes requiring multiple clicks.
As a workaround, we recommend replacing the SfPullToRefresh control with a custom Refresh button that executes the RefreshCommand, for example directly in the UBIKNavigationBar (as shown in the example above) or anywhere in the ToolBarMenuUI.
The CommandParameter specifies whether the update expiry should be ignored. We highly recommend setting it to True, otherwise, there is no guarantee that the refresh will be executed properly.
Below is an example of such a button.
<syntaxhighlight lang="xml">
<!-- Refresh -->
<Button
Grid.Column="3" BackgroundColor="{DynamicResource UBIKDarkThemeColor}" BorderColor="Transparent"..
Command="{Binding RefreshCommand}"
CommandParameter="True"
FontSize="16" IsVisible="{Binding CanExecuteRefreshCommand}" Style="{DynamicResource UBIKIconButton}" Text="{x:Static resources:UBIKIcons.ProgressRing}" TextColor="{DynamicResource UBIKLightTextColor}" />
</syntaxhighlight>
 
{{UnderConstructionStart}}
[[Category:Client|Xamarin XAML]]
[[Category:MAUI|Mobile XAML]]
[[Category:Pages with broken file links|Xamarin XAML]]
[[Category:Styling|Xamarin XAML]]
[[Category:XAML|Xamarin XAML]]
[[Category:Xamarin|Xamarin XAML]]
[[Category:MAUI|Mobile XAML]]