SfListView not scrolling in TestFlight/App Store iOS build on .NET 10
Hi,
I experienced exactly the same issue. It happens only for Release/TestFlight builds.
Hi Admir Tuzovic / Damian Pozimski,
Thank you for reporting the issue.
We would like to inform you that the scrolling issue in SfListView on iOS Release builds with .NET 10 MAUI is due to a known problem in the .NET MAUI framework's ScrollView itself. We have logged this issue in the official MAUI GitHub repository for tracking: ScrollView's scrolled event doesn't invoked on Mac platform in release mode · Issue #32524 · dotnet/maui
Workaround: To resolve the issue temporarily, please add the following configuration to your project file:
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)' == 'Release|net10.0-ios'"> <MtouchLink>None</MtouchLink> </PropertyGroup> |
This disables the linker for iOS Release builds and restores the expected scrolling behavior.
We appreciate your patience and understanding. Please let us know if you need further assistance.
Best Regards,
Muthu Kumar Madasamy.
can confirm it helped, thanks
Hi,
I experienced exactly the same issue.
Also adding this works ( from https://github.com/dotnet/macios/issues/24262 )
<PropertyGroup> <AppBundleExtraOptions>--optimize=-register-protocols</AppBundleExtraOptions> </PropertyGroup>
Hi,
I have an error also in android when call
#if __ANDROID_29__
ExtendedScrollView = ListView.GetScrollView();
var extendedScrollViewRenderer =Microsoft.Maui.Controls.Compatibility.Platfom.Android.Platform.GetRenderer(ExtendedScrollView);
extendedScrollViewRenderer.View.NestedScrollingEnabled = false;
#endif
Is it connected?
thanks
#if ANDROID var handler = ExtendedScrollView.Handler; if (handler?.PlatformView is Android.Views.View nativeView) { nativeView.NestedScrollingEnabled = false; } #endif |
- 8 Replies
- 4 Participants
-
AT Admir Tuzovic
- Nov 16, 2025 12:17 AM UTC
- Dec 3, 2025 11:36 AM UTC