From 29ea40039520034989b0e7b843f827be4c0a9a73 Mon Sep 17 00:00:00 2001 From: ahall Date: Sat, 11 Jul 2026 10:38:11 +0100 Subject: [PATCH] fix: remove non-functional IsSwipeEnabled from TodoApp.Uno TodoListPage ListViewBase.IsSwipeEnabled is only implemented on the native WinUI/Windows renderer in Uno Platform, causing an Uno0001 build warning on the android, browserwasm, desktop, and ios-maccatalyst heads. The sample doesn't implement any actual swipe-to-reveal-actions gesture (no SwipeItems, no Uno.Toolkit.UI SwipeContainer), so the attribute was dead configuration with no user-facing effect on any platform. Removing it eliminates the warning without changing behavior. Closes #537 --- samples/todoapp/TodoApp.Uno/TodoApp.Uno/Views/TodoListPage.xaml | 1 - 1 file changed, 1 deletion(-) diff --git a/samples/todoapp/TodoApp.Uno/TodoApp.Uno/Views/TodoListPage.xaml b/samples/todoapp/TodoApp.Uno/TodoApp.Uno/Views/TodoListPage.xaml index 6ca8c58..04e9ded 100644 --- a/samples/todoapp/TodoApp.Uno/TodoApp.Uno/Views/TodoListPage.xaml +++ b/samples/todoapp/TodoApp.Uno/TodoApp.Uno/Views/TodoListPage.xaml @@ -37,7 +37,6 @@ Margin="10" ItemsSource="{x:Bind ViewModel.Items, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}" SelectionMode="None" - IsSwipeEnabled="True" ScrollViewer.VerticalScrollBarVisibility="Auto">