Fixed crash when calling ItemsView.ScrollTo on unloaded CollectionView#25444
Fixed crash when calling ItemsView.ScrollTo on unloaded CollectionView#25444kubaflo merged 7 commits intodotnet:inflight/currentfrom
Conversation
|
/azp run |
|
Azure Pipelines successfully started running 3 pipeline(s). |
|
/rebase |
045b41e to
adf42ab
Compare
|
/azp run |
|
Azure Pipelines successfully started running 3 pipeline(s). |
jsuarezruiz
left a comment
There was a problem hiding this comment.
The fix is correct, we have to check if the PlatformView is not null or disposed when invoking ScrollTo, but can we apply the verification in a single place or in the same place on each platform?
When ScrollTo is invoked the following event is invoked:
maui/src/Controls/src/Core/Items/ItemsView.cs
Line 154 in c21b518
Then, in every platform handler we subscribe to
And try to do the scroll here
where can check if control is not disposed.
I like the idea! |
|
@jsuarezruiz I've applied the verification in only one, platform shared place |
|
/rebase |
ddc33df to
3efb73c
Compare
|
/azp run |
|
Azure Pipelines successfully started running 3 pipeline(s). |
|
/rebase |
64c3312 to
97f20fa
Compare
PureWeen
left a comment
There was a problem hiding this comment.
Can you apply this to cv2 as well
|
/azp run |
|
Azure Pipelines successfully started running 3 pipeline(s). |
…#34317) <!-- Please let the below note in for people that find this PR --> > [!NOTE] > Are you waiting for the changes in this PR to be merged? > It would be very helpful if you could [test the resulting artifacts](https://github.com/dotnet/maui/wiki/Testing-PR-Builds) from this PR and let us know in a comment if this change resolves your issue. Thank you! ### Description of Change Add `darc-*` to the `trigger: branches: include:` section in `ci-uitests.yml` and `ci-device-tests.yml` so that `maui-pr-uitests` and `maui-pr-devicetests` automatically run when dotnet-maestro pushes dependency updates to `darc-*` branches. Previously, these pipelines required manual `/azp run` comments on every maestro PR. ### Issues Fixed N/A - CI improvement ### Files Changed - `eng/pipelines/ci-uitests.yml` - Added `darc-*` to CI trigger branch filter - `eng/pipelines/ci-device-tests.yml` - Added `darc-*` to CI trigger branch filter Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…otnet#34327) <!-- Please let the below note in for people that find this PR --> > [!NOTE] > Are you waiting for the changes in this PR to be merged? > It would be very helpful if you could [test the resulting artifacts](https://github.com/dotnet/maui/wiki/Testing-PR-Builds) from this PR and let us know in a comment if this change resolves your issue. Thank you! ## Description PR dotnet#34320 fixed RS0017 analyzer errors caused by `#nullable enable` being sorted to the bottom of 14 Maps `PublicAPI.Unshipped.txt` files. The root cause was a prior Copilot agent session that used `LC_ALL=C sort -u` to resolve merge conflicts — the BOM bytes (`0xEF 0xBB 0xBF`) sort after all ASCII characters, pushing the directive below the API entries. This updates the Copilot instructions to prevent this from recurring: - Explains that `#nullable enable` must remain on line 1 - Warns against using plain `sort` on these files (BOM sort ordering) - Provides a safe conflict resolution script that preserves the header before sorting API entries Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…otnet#34301) ### Description of Change Fixes a crash on Android when using `TapGestureRecognizer` with `GraphicsView`. ### Root Cause `PlatformTouchGraphicsView.TouchesMoved` assumed that `_lastMovedViewPoints` always contained at least one element. In certain touch event sequences (triggered when a TapGestureRecognizer is attached), `_lastMovedViewPoints` could be empty while `points.Length == 1`, leading to an IndexOutOfRangeException. ### Fix Added a length check before accessing `_lastMovedViewPoints[0]` to prevent out-of-range access. ### Verified Scenarios - TapGestureRecognizer no longer causes a crash - Tap events fire correctly - Drag interaction remains functional - Multitouch does not crash Fixes dotnet#34296
…lView (dotnet#34279) > [!NOTE] > Are you waiting for the changes in this PR to be merged? > It would be very helpful if you could [test the resulting artifacts](https://github.com/dotnet/maui/wiki/Testing-PR-Builds) from this PR and let us know in a comment if this change resolves your issue. Thank you! ### Root Cause PR dotnet#33281 added a `GetDesiredSize()` override in `LabelHandler.Android.cs` to fix issue dotnet#31782 (WordWrap labels reporting full constraint width instead of actual text width). The fix computes the longest wrapped line and returns that as the desired width. This causes a regression when `MaxLines` is set on the label: 1. `GetDesiredSize()` is called at the full available width — text wraps cleanly within MaxLines limit 2. The fix returns the shorter "longest line" width 3. The label is arranged at that narrower width 4. At the narrower width, the same text needs more lines — exceeding MaxLines → text is clipped ### Description of Change The `GetDesiredSize()` override now uses a double-measurement strategy: 1. **Entry guard**: Only applies the width-narrowing when `Ellipsize == null` (no active truncation). 2. **Compute candidate width**: Finds the widest rendered line as before. 3. **Safety check** (only when `MaxLines` is explicitly set): Re-measures the TextView at exactly the narrowed pixel width. If the re-measurement shows the text would now exceed `MaxLines`, the original full width is returned instead. 4. **Narrow when safe**: If the re-measurement confirms the same or fewer lines, the narrowed width is returned — preserving the dotnet#31782 alignment fix even for labels with explicit `MaxLines`. This avoids both regressions: - Labels without `MaxLines` behave as before (alignment fix preserved, no second measure). - Labels with `MaxLines` that have line-count headroom also get the alignment fix. ### Issues Fixed Fixes dotnet#34120 ### Tested platforms - [x] Android - [x] Windows - [x] iOS - [x] Mac **Files Changed in this PR:** | File | Change | |------|--------| | `src/Core/src/Handlers/Label/LabelHandler.Android.cs` | Double-measurement fix (~20 lines) | | `src/Controls/tests/TestCases.HostApp/Issues/Issue34120.cs` | New UI test HostApp page | | `src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue34120.cs` | New NUnit UI test | **Regression Reference:** - Regressed by: PR dotnet#33281 - Introduced in: 10.0.40 - Works in: 10.0.30, 10.0.31 - Platform: Android only ### Screenshots |Before|After| |--|--| |<img width="540" alt="image" src="https://github.com/user-attachments/assets/4c365c06-6aa9-4471-9553-d46983ec66c7" >|<img width="540" alt="image" src="https://github.com/user-attachments/assets/d67723d9-fd79-4dcc-8451-f1537f8b3668" >|
- Add android-arm64 and android-x64 test cases to PublishNativeAOT and PublishNativeAOTRootAllMauiAssemblies tests - Add PrepareNativeAotBuildPropsAndroid() with Android-specific build properties including ANDROID_NDK_ROOT support - Add ExpectedNativeAOTWarningsAndroid baseline (XA1040 + IL3050 warnings) - Use OnlyAndroid() helper on Linux to avoid iOS/macCatalyst workload issues --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…nd pixel-level comparison (dotnet#34024) <!-- Please let the below note in for people that find this PR --> > [!NOTE] > Are you waiting for the changes in this PR to be merged? > It would be very helpful if you could [test the resulting artifacts](https://github.com/dotnet/maui/wiki/Testing-PR-Builds) from this PR and let us know in a comment if this change resolves your issue. Thank you! ### Root Cause `SafeAreaInsetsDidChange` fires repeatedly during iOS animations (e.g., `TranslateToAsync`, bottom sheet transitions) as views move relative to the window. This caused two distinct infinite loop patterns: 1. **Sub-pixel oscillation** (dotnet#32586, dotnet#33934): Animations produce sub-pixel differences in `SafeAreaInsets` (e.g., `0.0000001pt`). Exact equality fails, triggering `InvalidateAncestorsMeasures` → layout pass → position change → new `SafeAreaInsetsDidChange` → infinite loop. 2. **Parent-child double application** (dotnet#33595): A `ContentPage` (implementing `ISafeAreaView`) and its child `Grid` both independently apply safe area adjustments. When the `ContentPage` adjusts its layout for the notch/status bar, it repositions the `Grid`. The `Grid`'s new position fires `SafeAreaInsetsDidChange`, causing it to re-apply its own adjustment — creating a ping-pong loop. ### Description of Change **Primary fix — `IsParentHandlingSafeArea` (parent hierarchy walk):** In both `MauiView.ValidateSafeArea` and `MauiScrollView.ValidateSafeArea`, before applying safe area adjustments, we now check whether an ancestor `MauiView` is already applying safe area for the **same edges**. If so, the child skips its own adjustment to avoid double-padding. The check is **edge-aware**: a parent handling `Top` does not block a child from independently handling `Bottom`. Only overlapping edges cause deferral. The `_parentHandlesSafeArea` result is cached per layout cycle and cleared on `SafeAreaInsetsDidChange`, `InvalidateSafeArea`, and `MovedToWindow`. **Secondary fix — `EqualsAtPixelLevel`:** Safe area values are compared at device-pixel resolution (rounding to `1 / ContentScaleFactor`) before deciding whether to trigger a layout invalidation. This absorbs sub-pixel animation noise and prevents the oscillation loops in dotnet#32586 and dotnet#33934. **MauiScrollView bug fixes:** - Inverted condition: `!UpdateContentInsetAdjustmentBehavior()` was incorrectly gating behavior; corrected to `UpdateContentInsetAdjustmentBehavior()`. - The `_appliesSafeAreaAdjustments` flag now correctly incorporates `!IsParentHandlingSafeArea()`. **What was removed:** - The "Window Guard" approach (comparing `Window.SafeAreaInsets` to filter noise) was tried and removed. It was fragile: on macCatalyst with a custom TitleBar, `WindowViewController` repositions content by pushing it down, which changes the view's own `SafeAreaInsets` without changing `Window.SafeAreaInsets`. The guard blocked this legitimate change, causing a 28px content shift regression in CI. ### Issues Fixed Fixes dotnet#32586 Fixes dotnet#33934 Fixes dotnet#33595 Fixes dotnet#34042 --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: Tamilarasan-Paranthaman <Tamilarasan-Paranthaman@users.noreply.github.com>
- Check Handler is null instead of enumerating ItemsSource (addresses root cause) - Remove unnecessary System.Linq import - Use CollectionView2 in test for CV2 handler coverage - Fix ViewModel instance bug in test page - Test both ScrollTo overloads (index and object) - Add assertion-based verification instead of crash-only check Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
🚀 Dogfood this PR with:
curl -fsSL https://raw.githubusercontent.com/dotnet/maui/main/eng/scripts/get-maui-pr.sh | bash -s -- 25444Or
iex "& { $(irm https://raw.githubusercontent.com/dotnet/maui/main/eng/scripts/get-maui-pr.ps1) } 25444" |
|
/azp run maui-pr-uitests |
|
Azure Pipelines successfully started running 1 pipeline(s). |
🤖 AI Summary📊 Expand Full Review🔍 Pre-Flight — Context & Validation📝 Review Session — Fixed crash when calling ItemsView.ScrollTo on unloaded CollectionView ·
|
| Reviewer | Comment | Status |
|---|---|---|
| jsuarezruiz | Apply the fix in a single shared place (not per-platform handler) | ✅ ADDRESSED - fix moved to ItemsView.cs |
| PureWeen | CHANGES_REQUESTED: "Can you apply this to cv2 as well" |
Edge Cases / Disagreements
- PureWeen's CHANGES_REQUESTED is the current review state. The fix in
ItemsView.csis in the base class which both cv1 and cv2 inherit from. The test file usesCollectionView2(cv2 handler) to exercise the cv2 path. This may or may not fully satisfy PureWeen's concern.
Files Changed
Fix files:
src/Controls/src/Core/Items/ItemsView.cs(+11): AddedDismissScroll()method and guards inScrollTooverloads
Test files:
src/Controls/tests/TestCases.HostApp/Issues/Issue23014.xaml(+30): XAML page usingCollectionView2to reproduce the crashsrc/Controls/tests/TestCases.HostApp/Issues/Issue23014.xaml.cs(+35): Code-behind: removes CV from parent, callsScrollTo, checks for crashsrc/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue23014.cs(+26): UI test that clicks button and verifies "Success" label
Fix Candidates
| # | Source | Approach | Test Result | Files Changed | Notes |
|---|---|---|---|---|---|
| PR | PR #25444 | Guard in ItemsView.DismissScroll() checking Handler is null || ItemsSource is null |
⏳ PENDING (Gate) | ItemsView.cs (+11) |
Original PR — base class fix covering all handlers |
🚦 Gate — Test Verification
📝 Review Session — Fixed crash when calling ItemsView.ScrollTo on unloaded CollectionView · 6ed7a8b
Result: ✅ PASSED
Platform: android
Mode: Full Verification
PR: #25444
- Tests FAIL without fix ✅
- Tests PASS with fix ✅
Details
- Fix files detected:
src/Controls/src/Core/Items/ItemsView.cs - TestFilter:
Issue23014 - Both phases completed successfully
🔧 Fix — Analysis & Comparison
📝 Review Session — Fixed crash when calling ItemsView.ScrollTo on unloaded CollectionView · 6ed7a8b
Fix Candidates
| # | Source | Approach | Test Result | Files Changed | Notes |
|---|---|---|---|---|---|
| 1 | try-fix (claude-sonnet-4.6) | !IsLoaded || ItemsSource is null in DismissScroll() |
✅ PASS | ItemsView.cs |
Semantically clear lifecycle API |
| 2 | try-fix (claude-opus-4.6) | Guard in OnScrollToRequested virtual method: Window is null || ItemsSource is null |
✅ PASS | ItemsView.cs |
Single dispatch point |
| 3 | try-fix (gpt-5.2) | Android platform guard in MauiRecyclerView.ScrollTo: !IsAttachedToWindow + adapter bounds |
✅ PASS | MauiRecyclerView.cs |
Android-only, doesn't protect other platforms |
| 4 | try-fix (gpt-5.3-codex) | Parent is null || ItemsSource is null guard in ScrollTo overloads |
✅ PASS | ItemsView.cs |
Parent can be null in some edge cases |
| 5 | try-fix (gemini-3-pro-preview) | try/catch IllegalArgumentException in ScrollHelper.cs (Android) |
✅ PASS | ScrollHelper.cs |
Exception swallowing — poor pattern |
| PR | PR #25444 | Handler is null || ItemsSource is null in DismissScroll() |
✅ PASS (Gate) | ItemsView.cs (+11) |
Base class fix, covers cv1 and cv2 |
Cross-Pollination Summary
Round 2: claude-opus-4.6 → NO NEW IDEAS; gemini → NO NEW IDEAS; others proposed variations (deferred queue, handler layer, version token) — all dismissed as feature enhancements or over-engineering.
Round 3: gemini → NO NEW IDEAS; others proposed minor variations (unsubscribe in DisconnectHandler, PlatformView==null, LayoutManager null) — all dismissed as variations of existing approaches.
Exhausted: Yes (max 3 rounds, no new viable crash-fix approaches)
Selected Fix: PR's fix
Reasoning: PR's fix (Handler is null || ItemsSource is null) is the most appropriate because:
- ✅
Handleris the most direct indicator of platform operability — it's null when the view is disconnected from the visual tree - ✅ Placed in the base class
ItemsView— covers all ItemsView subclasses including both cv1 and cv2 handlers - ✅ Minimal, surgical change (+11 lines)
- ✅ Matches codebase patterns
- ✅ Independently validated: 5 alternative approaches all confirmed the base-class guard strategy works
- ✅ Exception-swallowing (Attempt 5) and platform-specific (Attempt 3) approaches are inferior
All try-fix alternatives validated the same fundamental approach (guard before platform operations), confirming the PR's design direction is correct. The primary difference between candidates is which readiness condition to check — Handler is null is the most semantically precise for platform operations.
📋 Report — Final Recommendation
📝 Review Session — Fixed crash when calling ItemsView.ScrollTo on unloaded CollectionView · 6ed7a8b
✅ Final Recommendation: APPROVE
Summary
PR #25444 fixes a crash that occurs when ItemsView.ScrollTo is called on a CollectionView that has been removed from the visual tree (unloaded). The fix is minimal, correct, and placed in the base class so it covers all ItemsView subclasses and both handler implementations (cv1 and cv2).
Gate verification confirmed: tests fail without the fix and pass with it on Android. Five independent multi-model try-fix alternatives all validated the same base-class guard strategy — the PR's approach is the simplest and most appropriate.
Root Cause
ItemsView.ScrollTo fired a ScrollToRequested event unconditionally. When a CollectionView was removed from its parent (unloaded), the platform handlers still subscribed to this event would attempt to scroll a detached native control, causing:
- Android:
Java.Lang.IllegalArgumentException: Invalid target position - Windows: NullReferenceException
- iOS: Index out of range exception
Fix Quality
PR's approach: Handler is null || ItemsSource is null guard in ItemsView.DismissScroll()
✅ Correct — Handler becomes null when a view is disconnected from the visual tree
✅ Minimal — 11 lines in the base class
✅ Cross-platform — covers cv1 and cv2 handlers via inheritance
✅ Both ScrollTo overloads protected
Alternative approaches explored (all passed):
!IsLoadedcheck — semantically clear but implementation-equivalent- Guard in
OnScrollToRequested— single dispatch point but changes virtual method contract - Android platform guard (
!IsAttachedToWindow) — platform-specific, doesn't protect other platforms Parent is null— may have edge cases with some view hierarchies- try/catch (Android) — exception swallowing is poor practice
Conclusion: The PR's fix is the simplest and most idiomatic approach. Multiple independent models arrived at the same strategy independently.
Title/Description
- Title needs minor update: Change "Fixed crash when calling ItemsView.ScrollTo on unloaded CollectionView" →
[CollectionView] Prevent crash when calling ScrollTo on unloaded view - Description is inadequate: Currently only contains
Fixes #23014. Needs NOTE block, root cause, and fix description.
Code Review Notes
- 🟡
DismissScroll()name is slightly ambiguous (implies dismissing a UI element) — minor - 🟡
ItemsSource is nullcondition could mask programmer errors (calling ScrollTo before binding data) — consider removing if only the unloaded scenario needs fixing - 🟡 Android test exercises cv1 handler path (not cv2) — base class fix covers both regardless; adding a comment addressing PureWeen's concern would help
PureWeen's CHANGES_REQUESTED
PureWeen requested "Can you apply this to cv2 as well." The fix IS applied to cv2 — it's in ItemsView.cs (base class), which both cv1 (CollectionViewHandler) and cv2 (CollectionViewHandler2) inherit from. The test file uses CollectionView2 to demonstrate cv2 awareness. The PR description should explicitly address this to resolve the outstanding review.
🔧 Try-Fix Analysis: ✅ 4 passed
✅ Fix 1
Approach: IsLoaded Property Guard
Use !IsLoaded instead of Handler is null to guard ScrollTo calls when the CollectionView is not part of the visual tree.
The fix changes the DismissScroll() method to:
private bool DismissScroll()
{
return !IsLoaded || ItemsSource is null;
}Different from existing fix: The PR's fix uses Handler is null to detect an unloaded/disconnected state. This alternative uses the IsLoaded property directly, which is the semantic property designed to express "is this view currently part of the visual tree".
IsLoaded is defined on VisualElement and is set to true when the view is loaded onto the platform and false when it's unloaded. This maps more directly to the user-facing concept in the issue description ("when a CollectionView is removed from its parent") and is more explicit than inferring state from handler nullability.
Additionally, IsLoaded is more robust because:
- It uses the official lifecycle API rather than an implementation detail (Handler)
- It covers edge cases where Handler might be set but view is being torn down
- It matches the workaround described in the issue (
!cv.IsLoaded)
diff --git a/src/Controls/src/Core/Items/ItemsView.cs b/src/Controls/src/Core/Items/ItemsView.cs
index 5d2aee9be0..94dff7962c 100644
--- a/src/Controls/src/Core/Items/ItemsView.cs
+++ b/src/Controls/src/Core/Items/ItemsView.cs
@@ -223,6 +223,9 @@ namespace Microsoft.Maui.Controls
public void ScrollTo(int index, int groupIndex = -1,
ScrollToPosition position = ScrollToPosition.MakeVisible, bool animate = true)
{
+ if (DismissScroll())
+ return;
+
OnScrollToRequested(new ScrollToRequestEventArgs(index, groupIndex, position, animate));
}
@@ -236,6 +239,9 @@ namespace Microsoft.Maui.Controls
public void ScrollTo(object item, object group = null,
ScrollToPosition position = ScrollToPosition.MakeVisible, bool animate = true)
{
+ if (DismissScroll())
+ return;
+
OnScrollToRequested(new ScrollToRequestEventArgs(item, group, position, animate));
}
@@ -312,5 +318,10 @@ namespace Microsoft.Maui.Controls
var itemsSourceText = DebuggerDisplayHelpers.GetDebugText(nameof(ItemsSource), ItemsSource?.GetType());
return $"{base.GetDebuggerDisplay()}, {itemsSourceText}";
}
+
+ private bool DismissScroll()
+ {
+ return !IsLoaded || ItemsSource is null;
+ }
}
}
Analysis
Result: Pass
What happened: The test ScrollToOnUnloadedCollectionViewShouldNotCrash passed successfully in 3 seconds. The ✅ All tests passed message confirmed the fix works.
Approach used: Replaced the Handler is null check with !IsLoaded in the DismissScroll() guard method. The method now returns true (dismiss scroll) when the view is not loaded OR when ItemsSource is null.
Why it worked:
IsLoadedis a first-class property onVisualElementthat directly tracks whether a view is part of the visual tree- When a CollectionView is removed from its parent (unloaded),
IsLoadedbecomesfalse - This guard prevents
ScrollToRequestedfrom being fired to the platform handler when the view is detached - The
IsLoadedcheck is semantically more precise thanHandler is null- it uses the official lifecycle API rather than checking an implementation detail
Difference from PR's fix:
- PR uses
Handler is null- implementation detail about handler attachment - This fix uses
!IsLoaded- semantic API that directly represents view lifecycle state
Insights: Both approaches effectively guard against crashes on unloaded CollectionViews. The IsLoaded approach is arguably more readable and semantically clear, directly expressing the intent: "don't scroll if not loaded". It also matches the user-suggested workaround mentioned in the issue description.
✅ Fix 3
Approach: Android RecyclerView Detach/Bounds Guard
Implement an Android platform-side guard in MauiRecyclerView.ScrollTo(ScrollToRequestEventArgs) to ignore scroll requests when the underlying RecyclerView is detached from the window (!IsAttachedToWindow) or when the computed target position is not within the current adapter item count.
This prevents Android from throwing Java.Lang.IllegalArgumentException: Invalid target position when ItemsView.ScrollTo is invoked on a CollectionView which has been removed/unloaded but still has a handler subscribed to ScrollToRequested.
Different from existing fix: The PR fix adds a guard in ItemsView.ScrollTo based on Handler/ItemsSource. This approach leaves ItemsView unchanged and prevents the crash at the Android platform layer by validating attachment state and adapter bounds just before calling into RecyclerView scrolling.
diff --git a/src/Controls/src/Core/Handlers/Items/Android/MauiRecyclerView.cs b/src/Controls/src/Core/Handlers/Items/Android/MauiRecyclerView.cs
index 2c2a75a630..3115c376a1 100644
--- a/src/Controls/src/Core/Handlers/Items/Android/MauiRecyclerView.cs
+++ b/src/Controls/src/Core/Handlers/Items/Android/MauiRecyclerView.cs
@@ -388,8 +388,17 @@ namespace Microsoft.Maui.Controls.Handlers.Items
if (ItemsView == null)
return;
+ // CollectionView can receive ScrollTo requests after being removed from the visual tree.
+ // In that state, the RecyclerView may be detached or the adapter may have no realized items,
+ // which can lead to Android throwing IllegalArgumentException ("Invalid target position").
+ if (!IsAttachedToWindow || ItemsViewAdapter == null)
+ return;
+
var position = DetermineTargetPosition(args);
+ if (position < 0 || position >= ItemsViewAdapter.ItemCount)
+ return;
+
if (args.IsAnimated)
{
ScrollHelper.AnimateScrollToPosition(position, args.ScrollToPosition);
Analysis
Result: Pass
What happened:
- Baseline was established (PR fix in
ItemsView.ScrollToreverted). - Implemented an Android-only guard in
MauiRecyclerView.ScrollTo(ScrollToRequestEventArgs). - Ran
BuildAndRunHostApp.ps1 -Platform android -TestFilter "Issue23014"on emulator-5554. - Script reported:
✅ All tests passed.
Why it worked:
Android crashes with IllegalArgumentException: Invalid target position when RecyclerView receives a scroll request for a position that is not valid for the current adapter state (e.g., detached/unloaded view or adapter item count not matching the requested index). By checking IsAttachedToWindow and validating the computed target position against ItemsViewAdapter.ItemCount before calling into ScrollHelper/RecyclerView, the scroll request is safely ignored when the CollectionView is effectively unloaded.
Insights:
This fix is platform-scoped and avoids changing ItemsView semantics. It should prevent the Android crash even if ItemsView.ScrollToRequested is raised after the view is removed but the handler is still alive.
✅ Fix 4
Approach: Parent-null visual tree guard in ItemsView
Add a shared DismissScroll() guard in ItemsView and short-circuit both ScrollTo overloads when the control is detached from the visual tree (Parent is null) or has no ItemsSource.
This treats Parent == null as the unloaded signal and prevents dispatching ScrollToRequested for detached controls.
Different from existing fix: The current PR fix guards on Handler is null; prior attempts used IsLoaded, Window, and Android platform attachment checks. This approach uses Parent == null at the cross-platform ItemsView API layer.
diff --git a/src/Controls/src/Core/Items/ItemsView.cs b/src/Controls/src/Core/Items/ItemsView.cs
index 5d2aee9be0..3f9526d705 100644
--- a/src/Controls/src/Core/Items/ItemsView.cs
+++ b/src/Controls/src/Core/Items/ItemsView.cs
@@ -223,6 +223,9 @@ namespace Microsoft.Maui.Controls
public void ScrollTo(int index, int groupIndex = -1,
ScrollToPosition position = ScrollToPosition.MakeVisible, bool animate = true)
{
+ if (DismissScroll())
+ return;
+
OnScrollToRequested(new ScrollToRequestEventArgs(index, groupIndex, position, animate));
}
@@ -236,6 +239,9 @@ namespace Microsoft.Maui.Controls
public void ScrollTo(object item, object group = null,
ScrollToPosition position = ScrollToPosition.MakeVisible, bool animate = true)
{
+ if (DismissScroll())
+ return;
+
OnScrollToRequested(new ScrollToRequestEventArgs(item, group, position, animate));
}
@@ -307,6 +313,11 @@ namespace Microsoft.Maui.Controls
SetInheritedBindingContext(bo, BindingContext);
}
+ private bool DismissScroll()
+ {
+ return Parent is null || ItemsSource is null;
+ }
+
private protected override string GetDebuggerDisplay()
{
var itemsSourceText = DebuggerDisplayHelpers.GetDebugText(nameof(ItemsSource), ItemsSource?.GetType());
Analysis
Result: Pass
What happened: The Android HostApp build/deploy succeeded, and the filtered UI test Issue23014 executed successfully (Total tests: 1, Passed: 1).
Why it worked/failed: Guarding ItemsView.ScrollTo when Parent is null prevented scroll requests from being raised after the CollectionView was detached from the visual tree. This avoided the unloaded-state scroll path that was triggering platform crashes.
Insights: A visual-tree attachment check at the API layer (ItemsView) can prevent invalid cross-platform scroll requests before they reach platform handlers.
✅ Fix 5
Approach: try/catch IllegalArgumentException in ScrollHelper.cs (Android)
Wrapped core scroll logic in ScrollHelper.cs (Android) with try-catch (Java.Lang.IllegalArgumentException) to silently ignore invalid scroll requests from RecyclerView.
Different from existing fix: PR fix guards at the base class (ItemsView) before event fires. This approach guards at the Android platform execution layer by catching the native exception after it's thrown by RecyclerView when the view is detached.
diff --git a/src/Controls/src/Core/Handlers/Items/Android/ScrollHelper.cs b/src/Controls/src/Core/Handlers/Items/Android/ScrollHelper.cs
index 9c20d6dd6f..2c21f5d68e 100644
--- a/src/Controls/src/Core/Handlers/Items/Android/ScrollHelper.cs
+++ b/src/Controls/src/Core/Handlers/Items/Android/ScrollHelper.cs
@@ -46,81 +46,95 @@ namespace Microsoft.Maui.Controls.Handlers.Items
public void AnimateScrollToPosition(int index, ScrollToPosition scrollToPosition)
{
- if (scrollToPosition == ScrollToPosition.MakeVisible)
+ try
{
- // MakeVisible matches the Android default of SnapAny, so we can just use the default
- _recyclerView.SmoothScrollToPosition(index);
- }
- else
- {
- // If we want a different ScrollToPosition, we need to create a SmoothScroller which can handle it
- var smoothScroller = new PositionalSmoothScroller(_recyclerView.Context, scrollToPosition)
+ if (scrollToPosition == ScrollToPosition.MakeVisible)
+ {
+ // MakeVisible matches the Android default of SnapAny, so we can just use the default
+ _recyclerView.SmoothScrollToPosition(index);
+ }
+ else
{
- TargetPosition = index
- };
+ // If we want a different ScrollToPosition, we need to create a SmoothScroller which can handle it
+ var smoothScroller = new PositionalSmoothScroller(_recyclerView.Context, scrollToPosition)
+ {
+ TargetPosition = index
+ };
- // And kick off the scroll operation
- _recyclerView.GetLayoutManager()?.StartSmoothScroll(smoothScroller);
+ // And kick off the scroll operation
+ _recyclerView.GetLayoutManager()?.StartSmoothScroll(smoothScroller);
+ }
+ }
+ catch (Java.Lang.IllegalArgumentException)
+ {
+ // If the RecyclerView isn't attached or valid for scrolling, ignore the exception
}
}
public void JumpScrollToPosition(int index, ScrollToPosition scrollToPosition, bool uniformSize = false)
{
- if (scrollToPosition == ScrollToPosition.MakeVisible)
+ try
{
- // MakeVisible is the default behavior, so we don't need to do anything special
- _recyclerView.ScrollToPosition(index);
- return;
- }
+ if (scrollToPosition == ScrollToPosition.MakeVisible)
+ {
+ // MakeVisible is the default behavior, so we don't need to do anything special
+ _recyclerView.ScrollToPosition(index);
+ return;
+ }
- if (!(_recyclerView.GetLayoutManager() is LinearLayoutManager linearLayoutManager))
- {
- // We don't have the ScrollToPositionWithOffset method available, so we don't have a way to
- // handle the Forms ScrollToPosition; just default back to the MakeVisible behavior
- _recyclerView.ScrollToPosition(index);
- return;
- }
+ if (!(_recyclerView.GetLayoutManager() is LinearLayoutManager linearLayoutManager))
+ {
+ // We don't have the ScrollToPositionWithOffset method available, so we don't have a way to
+ // handle the Forms ScrollToPosition; just default back to the MakeVisible behavior
+ _recyclerView.ScrollToPosition(index);
+ return;
+ }
+
+ // If ScrollToPosition is Start, then we can just use an offset of 0 and we're fine
+ // (Though that may change in RTL situations or if we're stacking from the end)
+ if (scrollToPosition == Microsoft.Maui.Controls.ScrollToPosition.Start)
+ {
+ linearLayoutManager.ScrollToPositionWithOffset(index, 0);
+ return;
+ }
- // If ScrollToPosition is Start, then we can just use an offset of 0 and we're fine
- // (Though that may change in RTL situations or if we're stacking from the end)
- if (scrollToPosition == Microsoft.Maui.Controls.ScrollToPosition.Start)
- {
- linearLayoutManager.ScrollToPositionWithOffset(index, 0);
- return;
- }
+ // For handling End or Center, things get more complicated because we need to know the size of
+ // the View we're targeting.
- // For handling End or Center, things get more complicated because we need to know the size of
- // the View we're targeting.
+ // If we're using ItemSizingStrategy MeasureFirstItem, we can use any item size as a guide to figure
+ // out the offset
- // If we're using ItemSizingStrategy MeasureFirstItem, we can use any item size as a guide to figure
- // out the offset
+ // TODO hartez 2018/10/03 14:00:32 Handle the MeasureFirstItem case to determine the offset and call
+ // `linearLayoutManager.ScrollToPositionWithOffset(index, offset);` here
+ // Use the uniformSize parameter and pass that in based on ItemsView.ItemSizingStrategy
- // TODO hartez 2018/10/03 14:00:32 Handle the MeasureFirstItem case to determine the offset and call
- // `linearLayoutManager.ScrollToPositionWithOffset(index, offset);` here
- // Use the uniformSize parameter and pass that in based on ItemsView.ItemSizingStrategy
+ // If we don't already know the size of the item, things get more complicated
- // If we don't already know the size of the item, things get more complicated
+ // The item may not actually exist; it may have never been realized, or it may have been recycled
+ // So we need to get it on screen using ScrollToPosition, then once it's on screen we can use the
+ // width/height to make adjustments for Center/End.
- // The item may not actually exist; it may have never been realized, or it may have been recycled
- // So we need to get it on screen using ScrollToPosition, then once it's on screen we can use the
- // width/height to make adjustments for Center/End.
+ // ScrollToPosition queues up the scroll operation. It doesn't do it immediately; it requests a layout
+ // After that layout is finished, the view will be available for measurement and then we can adjust
+ // the scroll to get it into the right place
- // ScrollToPosition queues up the scroll operation. It doesn't do it immediately; it requests a layout
- // After that layout is finished, the view will be available for measurement and then we can adjust
- // the scroll to get it into the right place
+ // Set up our pending adjustment
+ if (linearLayoutManager.CanScrollVertically())
+ {
+ _pendingScrollAdjustment = () => AdjustVerticalScroll(index, scrollToPosition);
+ }
+ else
+ {
+ _pendingScrollAdjustment = () => AdjustHorizontalScroll(index, scrollToPosition);
+ }
- // Set up our pending adjustment
- if (linearLayoutManager.CanScrollVertically())
- {
- _pendingScrollAdjustment = () => AdjustVerticalScroll(index, scrollToPosition);
+ // Kick off the Scroll to get the item into view; once it's in view, the pending adjustment will kick in
+ _recyclerView.ScrollToPosition(index);
}
- else
+ catch (Java.Lang.IllegalArgumentException)
{
- _pendingScrollAdjustment = () => AdjustHorizontalScroll(index, scrollToPosition);
+ // If the RecyclerView isn't attached or valid for scrolling, ignore the exception
}
-
- // Kick off the Scroll to get the item into view; once it's in view, the pending adjustment will kick in
- _recyclerView.ScrollToPosition(index);
}
ARect GetViewRect(int index)
Analysis of Try-Fix Attempt 5
Result: ✅ PASS
Approach
We wrapped the AnimateScrollToPosition and JumpScrollToPosition methods in src/Controls/src/Core/Handlers/Items/Android/ScrollHelper.cs with a try-catch block that specifically catches Java.Lang.IllegalArgumentException.
Why it Worked
The root cause of the crash was RecyclerView throwing Java.Lang.IllegalArgumentException: Invalid target position when ScrollTo was invoked on a CollectionView that was no longer attached to the window or in a valid state for scrolling.
Previous attempts tried to predict this state using properties like !IsLoaded or !IsAttachedToWindow. While valid, these checks might miss edge cases or race conditions where the state changes between the check and the execution.
By using a try-catch block around the actual Android API calls (SmoothScrollToPosition, ScrollToPosition, StartSmoothScroll), we ensure that:
- We catch the exception exactly where it happens.
- We don't need to maintain complex state checks.
- The invalid scroll request is silently ignored, which is the correct behavior for a user perspective (scrolling a non-visible view should do nothing, not crash).
This approach provides a robust defensive guard against platform-specific exceptions during scrolling operations on Android.
📋 Expand PR Finalization Review
Title: ✅ Good
Current: Fixed crash when calling ItemsView.ScrollTo on unloaded CollectionView
Description: ❌ Needs Rewrite
- "Fixed" (past tense verb) is non-standard; PR titles are typically imperative or noun-phrase
- The fix applies to
ItemsViewbase class, which covers more than justCollectionView— but the issue manifests through CollectionView, so keeping it is reasonable - Missing platform scope (this affects all platforms)
✨ Suggested PR Description
[!NOTE]
Are you waiting for the changes in this PR to be merged?
It would be very helpful if you could test the resulting artifacts from this PR and let us know in a comment if this change resolves your issue. Thank you!
Root Cause
When ItemsView.ScrollTo is called while the view is not attached to the visual tree (i.e., after being removed from its parent), Handler is null. The ScrollToRequested event is still fired and picked up by the now-detached platform handler, which crashes because its native collection view state has already been torn down.
This can be triggered unintentionally in real apps — for example, when a SelectionChanged event fires during page navigation or XAML Hot Reload, causing ScrollTo to be called just after the CollectionView is removed from its parent.
Description of Change
Added a guard at the start of both ItemsView.ScrollTo overloads (by index and by item) that silently returns early when the scroll cannot be safely processed:
private bool DismissScroll()
{
return Handler is null || ItemsSource is null;
}Handler is null— view is not attached to the visual tree (unloaded/removed from parent)ItemsSource is null— nothing to scroll to
Both ScrollTo(int index, ...) and ScrollTo(object item, ...) now call DismissScroll() before raising ScrollToRequested.
Issues Fixed
Fixes #23014
Platforms Tested
- iOS
- Android
- Windows
- Mac Catalyst
Code Review: ✅ Passed
Code Review — PR #25444
🟡 Suggestions
1. Method name DismissScroll() is misleading
File: src/Controls/src/Core/Items/ItemsView.cs
Problem: The method name DismissScroll implies an action (dismissing), but it's a predicate that returns true when the scroll request should be ignored. This makes the call-site read awkwardly:
if (DismissScroll())
return;A reader unfamiliar with the code has to read the method body to understand what it means.
Recommendation: Rename to something that reads naturally as a boolean guard:
private bool ShouldIgnoreScrollRequest()
{
return Handler is null || ItemsSource is null;
}
// Call site reads clearly:
if (ShouldIgnoreScrollRequest())
return;2. ItemsSource is null check may be overly broad
File: src/Controls/src/Core/Items/ItemsView.cs
Problem: Checking ItemsSource is null silently suppresses ScrollTo calls even when the CollectionView is fully loaded and attached. If ItemsSource is momentarily null during a binding update, a legitimate scroll request would be silently dropped with no feedback to the caller.
The issue report specifically describes crashes when the view is unloaded (Handler is null). The Handler is null check alone is sufficient to guard against the reported crash.
Recommendation: Consider whether ItemsSource is null is intentional. If so, add an XML doc comment to ScrollTo noting this behavior. If not, consider dropping it:
private bool ShouldIgnoreScrollRequest()
{
// Handler is null when the view is not attached to the visual tree.
// Raising ScrollToRequested with no handler causes platform crashes.
return Handler is null;
}If keeping the ItemsSource check, document it:
/// <summary>
/// Scrolls to the item at the specified index.
/// No-op if the view is not attached to the visual tree or has no items source.
/// </summary>3. Test uses try/catch to detect success — acceptable but fragile
File: src/Controls/tests/TestCases.HostApp/Issues/Issue23014.xaml.cs
Problem: The test page uses try/catch around the ScrollTo calls and sets StatusLabel.Text = "Success" only if no exception is thrown. This is a valid pattern for crash-prevention tests, but it means the test will pass even if ScrollTo silently no-ops for unrelated reasons (e.g., a future change that suppresses all scroll requests).
Note: This is a minor concern — crash prevention tests often work this way. The pattern is consistent with other issue tests in the codebase.
✅ Looks Good
-
Fix location is correct: The guard is in
ItemsView.cs(the base class), not in any platform-specific handler. This means it covers all platforms (iOS, Android, Windows, Mac) and both the old Items/ and new Items2/ handler implementations with a single change. -
Both
ScrollTooverloads are covered: Both theScrollTo(int index, ...)andScrollTo(object item, ...)variants are guarded, matching the test which exercises both. -
Test structure follows conventions: The UI test uses
_IssuesUITest, the correct[Category(UITestCategories.CollectionView)], descriptive method nameScrollToOnUnloadedCollectionViewShouldNotCrash, andCollectionView2(the new Items2 handler) as expected for CollectionView tests in the HostApp. -
No public API changes: The fix is purely defensive — no new public methods or properties, no behavior change for the happy path.
## What's Coming .NET MAUI inflight/candidate introduces significant improvements across all platforms with focus on quality, performance, and developer experience. This release includes 66 commits with various improvements, bug fixes, and enhancements. ## Activityindicator - [Android] Implemented material3 support for ActivityIndicator by @Dhivya-SF4094 in #33481 <details> <summary>🔧 Fixes</summary> - [Implement material3 support for ActivityIndicator](#33479) </details> - [iOS] Fix: ActivityIndicator IsRunning ignores IsVisible when set to true by @bhavanesh2001 in #28983 <details> <summary>🔧 Fixes</summary> - [[iOS] [ActivityIndicator] `IsRunning` ignores `IsVisible` when set to `true`](#28968) </details> ## Button - [iOS] Button RTL text and image overlap - fix by @kubaflo in #29041 ## Checkbox - [iOS/MacCatalyst] Fix CheckBox foreground color not resetting when set to null by @Ahamed-Ali in #34284 <details> <summary>🔧 Fixes</summary> - [[iOS] Color of the checkBox control is not properly worked on dynamic scenarios](#34278) </details> ## CollectionView - [iOS] Fix: CollectionView does not clear selection when SelectedItem is set to null by @Tamilarasan-Paranthaman in #30420 <details> <summary>🔧 Fixes</summary> - [CollectionView not being able to remove selected item highlight on iOS](#30363) - [[MAUI] Select items traces are preserved](#26187) </details> - [iOS] CV2 ItemsLayout update by @kubaflo in #28675 <details> <summary>🔧 Fixes</summary> - [CollectionView CollectionViewHandler2 doesnt change ItemsLayout on DataTrigger](#28656) - [iOS CollectionView doesn't respect a change to ItemsLayout when using Items2.CollectionViewHandler2](#31259) </details> - [iOS][CV2] Fix CollectionView renders large empty space at bottom of view by @devanathan-vaithiyanathan in #31215 <details> <summary>🔧 Fixes</summary> - [[iOS] [MacCatalyst] CollectionView renders large empty space at bottom of view](#17799) - [[iOS/Mac] CollectionView2 EmptyView takes up large horizontal space even when the content is small](#33201) </details> - [iOS] Fixed issue where group Header/Footer template was set to all items when IsGrouped was true for an ObservableCollection by @Tamilarasan-Paranthaman in #29144 <details> <summary>🔧 Fixes</summary> - [[iOS] Group Header/Footer Repeated for All Items When IsGrouped is True for ObservableCollection in CollectionView](#29141) </details> - [Android] Fix CollectionView selection crash with HeaderTemplate by @NirmalKumarYuvaraj in #34275 <details> <summary>🔧 Fixes</summary> - [[Bug] [Android] System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index](#34247) </details> ## DateTimePicker - [iOS] Fix TimePicker AM/PM frequently changes when the app is closed and reopened by @devanathan-vaithiyanathan in #31066 <details> <summary>🔧 Fixes</summary> - [[iOS] TimePicker AM/PM frequently changes when the app is closed and reopened](#30837) - [Maui 10 iOS TimePicker Strange Characters in place of AM/PM](#33722) </details> - Android TimePicker ignores 24 hour system setting when using Format Property - fix by @kubaflo in #28797 <details> <summary>🔧 Fixes</summary> - [Android TimePicker ignores 24 hour system setting when using Format Property](#28784) </details> ## Drawing - [iOS, Mac, Windows] GraphicsView: Fix Background/BackgroundColor not updating by @NirmalKumarYuvaraj in #31254 <details> <summary>🔧 Fixes</summary> - [[iOS, Mac, Windows] GraphicsView does not change the Background/BackgroundColor](#31239) </details> - [iOS] GraphicsView DrawString - fix by @kubaflo in #26304 <details> <summary>🔧 Fixes</summary> - [DrawString not rendering in iOS.](#24450) - [GraphicsView DrawString not rendering in iOS](#8486) - [DrawString doesn't work on maccatalyst](#4993) </details> - [Android] - Fix Shadow Rendering For Transparent Fill, Stroke (Lines), and Text on Shapes by @prakashKannanSf3972 in #29528 <details> <summary>🔧 Fixes</summary> - [Ellipse Transparency Not Rendered When Drawing Arc Inside the Ellipse Using GraphicsView on Android](#29394) </details> - Revert "[iOS, Mac, Windows] GraphicsView: Fix Background/BackgroundColor not updating (#31254)" by @Ahamed-Ali via @Copilot in #34508 ## Entry - [iOS 26] Fix Entry MaxLength not enforced due to new multi-range delegate by @kubaflo in #32045 <details> <summary>🔧 Fixes</summary> - [iOS 26 - The MaxLength property value is not respected on an Entry control.](#32016) - [.NET MAUI Entry Maximum Length not working on iOS and macOS](#33316) </details> - [iOS] Fixed Entry with IsPassword toggling loses previously entered text by @SubhikshaSf4851 in #30572 <details> <summary>🔧 Fixes</summary> - [Entry with IsPassword toggling loses previously entered text on iOS when IsPassword is re-enabled](#30085) </details> ## Essentials - Fix for FilePicker PickMultipleAsync nullable reference type by @SuthiYuvaraj in #33163 <details> <summary>🔧 Fixes</summary> - [FilePicker PickMultipleAsync nullable reference type](#33114) </details> - Replace deprecated NetworkReachability with NWPathMonitor on iOS/macOS by @jfversluis via @Copilot in #32354 <details> <summary>🔧 Fixes</summary> - [NetworkReachability is obsolete on iOS/maccatalyst 17.4+](#32312) - [Use NWPathMonitor on iOS for Essentials Connectivity](#2574) </details> ## Essentials Connectivity - Update Android Connectivity implementation to use modern APIs by @jfversluis via @Copilot in #30348 <details> <summary>🔧 Fixes</summary> - [Update the Android Connectivity implementation to user modern APIs](#30347) </details> ## Flyout - [iOS] Fixed Flyout icon not updating when root page changes using InsertPageBefore by @Vignesh-SF3580 in #29924 <details> <summary>🔧 Fixes</summary> - [[iOS] Flyout icon not replaced by back button when root page is changed using InsertPageBefore](#29921) </details> ## Flyoutpage - [iOS] Flyout Items Not Displayed in RightToLeft FlowDirection in Landscape - fix by @kubaflo in #26762 <details> <summary>🔧 Fixes</summary> - [Flyout Items Not Displayed in RightToLeft FlowDirection on iOS in Landscape Orientation and Hamburger Icon Positioned Incorrectly](#26726) </details> ## Image - [Android] Implemented Material3 support for Image by @Dhivya-SF4094 in #33661 <details> <summary>🔧 Fixes</summary> - [Implement Material3 support for Image](#33660) </details> ## Keyboard - [iOS] Fix gap at top of view after rotating device while Entry keyboard is visible by @praveenkumarkarunanithi in #34328 <details> <summary>🔧 Fixes</summary> - [Focusing and entering texts on entry control causes a gap at the top after rotating simulator.](#33407) </details> ## Label - [Android] Support for images inside HTML label by @kubaflo in #21679 <details> <summary>🔧 Fixes</summary> - [Label with HTML TextType does not display images on Android](#21044) </details> - [fix] ContentLabel Moved to a nested class to prevent CS0122 in external source generators by @SubhikshaSf4851 in #34514 <details> <summary>🔧 Fixes</summary> - [[MAUI] Building Maui App with sample content results CS0122 errors.](#34512) </details> ## Layout - Optimize ordering of children in Flex layout by @symbiogenesis in #21961 - [Android] Fix control size properties not available during Loaded event by @Vignesh-SF3580 in #31590 <details> <summary>🔧 Fixes</summary> - [CollectionView on Android does not provide height, width, logical children once loaded, works fine on Windows](#14364) - [Control's Loaded event invokes before calling its measure override method.](#14160) </details> ## Mediapicker - [iOS/Android] MediaPicker: Fix image orientation when RotateImage=true by @michalpobuta in #33892 <details> <summary>🔧 Fixes</summary> - [MediaPicker.PickPhotosAsync does not preserve image orientation](#32650) </details> ## Modal - [Windows] Fix modal page keyboard focus not shifting to newly opened modal by @jfversluis in #34212 <details> <summary>🔧 Fixes</summary> - [Keyboard focus does not shift to a newly opened modal page: Pressing enter clicks the button on the page beneath the modal page](#22938) </details> ## Navigation - [iOS26] Apply view margins in title view by @kubaflo in #32205 <details> <summary>🔧 Fixes</summary> - [NavigationPage TitleView iOS 26](#32200) </details> - [iOS] System.NullReferenceException at NavigationRenderer.SetStatusBarStyle() by @kubaflo in #29564 <details> <summary>🔧 Fixes</summary> - [System.NullReferenceException at NavigationRenderer.SetStatusBarStyle()](#29535) </details> - [iOS 26] Fix back button color not applied for NavigationPage by @Shalini-Ashokan in #34326 <details> <summary>🔧 Fixes</summary> - [[iOS] Color not applied to the Back button text or image on iOS 26](#33966) </details> ## Picker - Fix Picker layout on Mac Catalyst 26+ by @kubaflo in #33146 <details> <summary>🔧 Fixes</summary> - [[MacOS 26] Text on picker options are not centered on macOS 26.1](#33229) </details> ## Progressbar - [Android] Implemented Material3 support for ProgressBar by @SyedAbdulAzeemSF4852 in #33926 <details> <summary>🔧 Fixes</summary> - [Implement Material3 support for Progressbar](#33925) </details> ## RadioButton - [iOS, Mac] Fix for RadioButton TextColor for plain Content not working by @HarishwaranVijayakumar in #31940 <details> <summary>🔧 Fixes</summary> - [RadioButton: TextColor for plain Content not working on iOS](#18011) </details> - [All Platforms] Fix RadioButton warning when ControlTemplate is set with View content by @kubaflo in #33839 <details> <summary>🔧 Fixes</summary> - [Seeking clarification on RadioButton + ControlTemplate + Content documentation](#33829) </details> - Visual state change for disabled RadioButton by @kubaflo in #23471 <details> <summary>🔧 Fixes</summary> - [RadioButton disabled UI issue - iOS](#18668) </details> ## SafeArea - [Android] Fix for TabbedPage BottomNavigation BarBackgroundColor not extending to system navigation bar by @praveenkumarkarunanithi in #33428 <details> <summary>🔧 Fixes</summary> - [[Android] TabbedPage BottomNavigation BarBackgroundColor does not extend to system navigation bar area in Edge-to-Edge mode](#33344) </details> ## ScrollView - [Android] ScrollView: Fix HorizontalScrollBarVisibility not updating immediately at runtime by @SubhikshaSf4851 in #33528 <details> <summary>🔧 Fixes</summary> - [Runtime Scrollbar visibility not updating correctly on Android and macOS platforms.](#33400) </details> - Fixed crash when calling ItemsView.ScrollTo on unloaded CollectionView by @kubaflo in #25444 <details> <summary>🔧 Fixes</summary> - [App crashes when calling ItemsView.ScrollTo on unloaded CollectionView](#23014) </details> ## Shell - [Shell] Update logic for iOS large title display in ShellItemRenderer by @kubaflo in #33246 - [iOS][Shell] Fix navigation lifecycle and back button for More tab (>5 tabs) by @kubaflo in #27932 <details> <summary>🔧 Fixes</summary> - [OnAppearing and OnNavigatedTo does not work when using extended Tabbar (tabbar with more than 5 tabs) on IOS.](#27799) - [Shell.BackButtonBehavior does not work when using extended Tabbar (tabbar with more than 5 tabs)on IOS.](#27800) - [Shell TabBar More button causes ViewModel command binding disconnection on back navigation](#30862) - [Content page onappearing not firing if tabs are on the more tab on IOS](#31166) </details> - [iOS 26] Fix tab bar ghosting when navigating from modal to tabbed Shell content by @SubhikshaSf4851 in #34254 <details> <summary>🔧 Fixes</summary> - [[iOS] Tab bar ghosting issue on iOS 26 (liquid glass)](#34143) </details> - Fix for Shell tab visibility not updating when navigating back multiple pages by @BagavathiPerumal in #34403 <details> <summary>🔧 Fixes</summary> - [Changing Shell Tab Visibility when navigating back multiple pages ignores Shell Tab Visibility](#33351) </details> - [iOS/Mac] Fixed OnBackButtonPressed not firing for Shell Navigation Bar Button by @Dhivya-SF4094 in #34401 <details> <summary>🔧 Fixes</summary> - [[iOS] OnBackButtonPressed not firing for Shell Navigation Bar button](#34190) </details> ## Slider - [iOS] Fix for Slider ThumbImageSource is not centered properly on iOS 26 by @HarishwaranVijayakumar in #34019 <details> <summary>🔧 Fixes</summary> - [[iOS 26] Slider ThumbImageSource is not centered properly](#33967) </details> - [Android] Fix improper rendering of ThumbimageSource in Slider by @NirmalKumarYuvaraj in #34064 <details> <summary>🔧 Fixes</summary> - [[Slider] MAUI Slider thumb image is big on android](#13258) </details> ## Stepper - [iOS] Fix Stepper layout overlap in landscape on iOS 26 by @Vignesh-SF3580 in #34325 <details> <summary>🔧 Fixes</summary> - [[.NET10] D10 - Customize cursor position - Rotating simulator makes the button and label overlap](#34273) </details> ## SwipeView - [iOS] SwipeView: Honor FontImageSource.Color in SwipeItem icon by @kubaflo in #27389 <details> <summary>🔧 Fixes</summary> - [[iOS] SwipeView: SwipeItem.IconImageSource.FontImageSource color value not honored](#27377) </details> ## Switch - [Android] Fix Switch thumb shadow missing when ThumbColor is set by @Shalini-Ashokan in #33960 <details> <summary>🔧 Fixes</summary> - [Android Switch Control Thumb Shadow](#19676) </details> ## Toolbar - [iOS/Mac Catalyst 26] Fix Shell.ForegroundColor not applied to ToolbarItems by @SyedAbdulAzeemSF4852 in #34085 <details> <summary>🔧 Fixes</summary> - [[iOS26] Shell.ForegroundColor is not applied to ToolbarItems](#34083) </details> - [Android] VoiceOver on Toolbar Item by @kubaflo in #29596 <details> <summary>🔧 Fixes</summary> - [VoiceOver on Toolbar Item](#29573) - [SemanticProperties do not work on ToolbarItems](#23623) </details> <details> <summary>🧪 Testing (11)</summary> - [Testing] Additional Feature Matrix Test Cases for CollectionView by @TamilarasanSF4853 in #32432 - [Testing] Feature Matrix UITest Cases for VisualStateManager by @LogishaSelvarajSF4525 in #34146 - [Testing] Feature Matrix UITest Cases for Clip by @TamilarasanSF4853 in #34121 - [Testing] Feature matrix UITest Cases for Map Control by @HarishKumarSF4517 in #31656 - [Testing] Feature matrix UITest Cases for Visual Transform Control by @HarishKumarSF4517 in #32799 - [Testing] Feature Matrix UITest Cases for Shell Pages by @NafeelaNazhir in #33945 - [Testing] Feature Matrix UITest Cases for Triggers by @HarishKumarSF4517 in #34152 - [Testing] Refactoring Feature Matrix UITest Cases for CheckBox Control by @LogishaSelvarajSF4525 in #34283 - Resolve UI test Build Sample failures - Candidate March 16 by @Ahamed-Ali in #34442 - Fix the failures in the Candidate branch- March 16 by @Ahamed-Ali in #34453 <details> <summary>🔧 Fixes</summary> - [March 16th, Candidate](#34437) </details> - Fixed the iOS 18.5 Candidate failures (March 16,2026) by @Ahamed-Ali in #34593 <details> <summary>🔧 Fixes</summary> - [March 16th, Candidate](#34437) </details> </details> <details> <summary>📦 Other (2)</summary> - Fixed candidate test failures caused by PR #33428. by @Ahamed-Ali in #34515 <details> <summary>🔧 Fixes</summary> - [[.NET10] On Android, there's a big space at the top for I, M and N2 & N3](#34509) </details> - Revert "[iOS] Button RTL text and image overlap - fix (#29041)" in b0497af </details> <details> <summary>📝 Issue References</summary> Fixes #2574, Fixes #4993, Fixes #8486, Fixes #13258, Fixes #14160, Fixes #14364, Fixes #17799, Fixes #18011, Fixes #18668, Fixes #19676, Fixes #21044, Fixes #22938, Fixes #23014, Fixes #23623, Fixes #24450, Fixes #26187, Fixes #26726, Fixes #27377, Fixes #27799, Fixes #27800, Fixes #28656, Fixes #28784, Fixes #28968, Fixes #29141, Fixes #29394, Fixes #29535, Fixes #29573, Fixes #29921, Fixes #30085, Fixes #30347, Fixes #30363, Fixes #30837, Fixes #30862, Fixes #31166, Fixes #31239, Fixes #31259, Fixes #32016, Fixes #32200, Fixes #32312, Fixes #32650, Fixes #33114, Fixes #33201, Fixes #33229, Fixes #33316, Fixes #33344, Fixes #33351, Fixes #33400, Fixes #33407, Fixes #33479, Fixes #33660, Fixes #33722, Fixes #33829, Fixes #33925, Fixes #33966, Fixes #33967, Fixes #34083, Fixes #34143, Fixes #34190, Fixes #34247, Fixes #34273, Fixes #34278, Fixes #34437, Fixes #34509, Fixes #34512 </details> **Full Changelog**: main...inflight/candidate
dotnet#25444) ### Issues Fixed Fixes dotnet#23014
Issues Fixed
Fixes #23014