[iOS] Fixed Entry with IsPassword toggling loses previously entered text #30572
[iOS] Fixed Entry with IsPassword toggling loses previously entered text #30572kubaflo merged 10 commits intodotnet:inflight/currentfrom
Conversation
|
Hey there @@SubhikshaSf4851! Thank you so much for your PR! Someone from the team will get assigned to your PR shortly and we'll get it reviewed. |
|
/azp run MAUI-UITests-public |
|
Azure Pipelines successfully started running 1 pipeline(s). |
jsuarezruiz
left a comment
There was a problem hiding this comment.
Could you include a related test?
|
@jsuarezruiz While testing, I used App.EnterText to type into the field. After toggling IsPassword, the entered text replaced the previous text instead of appending. In a normal Entry (without IsPassword), the text appends as expected. Could you suggest a way to write a test for this scenario? |
There was a problem hiding this comment.
Pull Request Overview
This PR fixes an iOS-specific issue where toggling the IsPassword property on an Entry control would cause the previously entered text to be lost. The fix ensures that when switching password visibility, the current text is preserved and properly restored without triggering unwanted side effects.
- Modified
UpdateIsPasswordmethod to capture and restore text when toggling password mode - Added text property suppression mechanism to prevent event firing during text restoration
- Implemented
SuppressTextPropertySetmethod inMauiTextFieldto control event propagation
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| src/Core/src/Platform/iOS/TextFieldExtensions.cs | Enhanced UpdateIsPassword method to preserve text during password toggle operations |
| src/Core/src/Platform/iOS/MauiTextField.cs | Added suppression mechanism to prevent TextPropertySet events during controlled text updates |
|
Hi @SubhikshaSf4851 I've also faced the same issue |
|
/rebase |
8ca5659 to
09ab69a
Compare
09ab69a to
b231688
Compare
…#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>
🤖 AI Summary📊 Expand Full Review🔍 Pre-Flight — Context & Validation📝 Review Session — Modified Suggested Changes ·
|
| Reviewer | Feedback | Status |
|---|---|---|
| jsuarezruiz | "Could you include a related UNRESOLVED - no tests added | test?" |
| copilot-pr-reviewer | Suppression should use try-finally to ensure SuppressTextPropertySet(false) is always UNRESOLVED |
called |
| copilot-pr-reviewer | Extract type check/cast before if for readability |
Nitpick |
| copilot-pr-reviewer | Add XML doc comment to _suppressTextPropertySet field |
Nitpick |
Key Concerns
- No tests The reviewer explicitly requested a test, but none were added. The author mentioned difficulty writing automated tests for this scenario.included
- Missing try- If an exception occurs during
textField.Text = string.EmptyortextField.InsertText(currentText), the suppress flag will never be reset tofalse, leaving theTextPropertySetevent permanently suppressed.finally - Code The pattern could be more robust (try-finally).quality
Fix Candidates
| # | Source | Approach | Test Result | Files Changed | Notes |
|---|---|---|---|---|---|
| PR | PR #30572 | Capture text before toggle, suppress TextPropertySet events, clear and re-insert via PENDING (Gate) | TextFieldExtensions.cs (+10), MauiTextField.cs (+8,-1) |
Original missing try-finally | PR InsertText |
🚦 Gate — Test Verification
📝 Review Session — Modified Suggested Changes · b231688
** FAILED (No Tests)Result:**
Platform: ios (selected)
Mode: Full Verification
Issue
No tests exist for issue #30085 in the PR or in the test suite.
- The reviewer (
jsuarezruiz) explicitly requested a test. - The PR author acknowledged difficulty but did not add any tests.
- Search across
src/Controls/testsandsrc/Core/testsfound zero files matching30085or this issue scenario.
Impact
Gate cannot verify that:
- Tests FAIL without the fix (catches the bug)
- Tests PASS with the fix (fix is correct)
The PR is missing test coverage for the IsPassword toggle text loss scenario.
Recommendation
Tests must be added before this PR can be approved. The write-tests-agent can help create device tests for this scenario.
A device test in src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.iOS.cs that:
- Creates an Entry with
IsPassword = true - Types some text
- Toggles
IsPasswordtofalsethen back totrue - Verifies text is preserved after each toggle
🔧 Fix — Analysis & Comparison
📝 Review Session — Modified Suggested Changes · b231688
Fix Candidates
| # | Source | Approach | Test Result | Files Changed | Notes |
|---|---|---|---|---|---|
| PR | PR #30572 | Capture text before toggle, suppress TextPropertySet events, clear and re-insert via InsertText PASS (Gate skipped - no tests) | TextFieldExtensions.cs, MauiTextField.cs |
Missing try-finally safety |
Exhausted: N/A - Phase skipped (Gate FAILED due to missing tests)
Selected Fix: PR's Not evaluated (Gate did not pass; no independent alternatives explored)fix
Notes
Gate phase failed because no tests exist for issue #30085. The try-fix exploration phase was skipped per workflow rules. The PR's fix approach is logically sound but has a code quality concern (missing try-finally) that should be addressed.
📋 Report — Final Recommendation
📝 Review Session — Modified Suggested Changes · b231688
Final Recommendation: REQUEST CHANGES##
Summary
PR #30572 fixes an iOS-specific bug where toggling IsPassword on an Entry control causes previously entered text to be lost. The fix approach is logically capturing and re-inserting text with event suppression. However, the PR is missing two required items: (1) tests and (2) a try-finally block to safely restore the suppression flag.correct
Root Cause
On iOS, changing SecureTextEntry (the native backing property for IsPassword) resets the text field's content. The original UpdateIsPassword code did not preserve and restore the existing text after this platform-level reset.
Fix Quality
The PR's approach is sensible:
- Captures
currentTextbefore togglingSecureTextEntry - After re-enabling and becoming first responder, re-inserts
currentTextviaInsertText() - Suppresses
TextPropertySetevents during this re-insertion to avoid cascading side effects
**Critical Missing try-finally:**Issue
// CURRENT (dangerous):
mauiTextField.SuppressTextPropertySet(true);
textField.Text = string.Empty; // Could throw
textField.InsertText(currentText); // Could throw
mauiTextField.SuppressTextPropertySet(false); // Won't run on exception!
// REQUIRED (safe):
mauiTextField.SuppressTextPropertySet(true);
try
{
textField.Text = string.Empty;
textField.InsertText(currentText);
}
finally
{
mauiTextField.SuppressTextPropertySet(false); // Always runs
}If an exception occurs during text manipulation, _suppressTextPropertySet remains true permanently, silently breaking all future TextPropertySet event delivery for that text field.
Required Changes
-
Tests are The reviewer (
jsuarezruiz) explicitly requested a test. No tests were added. Thewrite-tests-agentcan help create an appropriate device test for this scenario insrc/Controls/tests/DeviceTests/Elements/Entry/EntryTests.iOS.cs.missing -
Add try-finally in
TextFieldExtensions.csto ensureSuppressTextPropertySet(false)is always called, even on exception.
Minor Suggestions (Non-blocking)
- Extract the
textField as MauiTextFieldcast to a local variable before theifcheck (Copilot suggestion) - Add an XML doc comment to
_suppressTextPropertySetexplaining its purpose - Add a brief inline comment explaining why event suppression is needed
Platform Coverage
- PR tested on iOS, Android, Windows, Mac (per author's checkboxes)
- The code change only affects the iOS platform code path
Gate Status
No tests exist for issue #30085. Cannot verify the fix catches the bug automatically.FAILED Gate
📋 Expand PR Finalization Review
Title: ✅ Good
Current: [iOS] Fixed Entry with IsPassword toggling loses previously entered text
Description: ✅ Good
Description needs updates. See details below.
✨ 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
On iOS, when UITextField.SecureTextEntry is set to true while the field is the first responder (focused), iOS internally resets the text field's content. The existing UpdateIsPassword code did not preserve and restore the text around this platform-level reset, causing previously entered text to be lost whenever the user toggled IsPassword back to true while the field remained focused.
This bug only affects iOS because only iOS clears text on SecureTextEntry changes while focused. Android and Windows do not exhibit this behavior.
Description of Change
Modified UpdateIsPassword in TextFieldExtensions.cs to preserve and restore text when toggling to password mode while the field is focused (entry.IsPassword && textField.IsFirstResponder):
- Capture
currentTextbefore disabling and enablingSecureTextEntry - After
SecureTextEntry = true(which resets native content), re-insert the original text viaInsertText(), which correctly positions the cursor at the end and respects the secure field's text entry model - Suppress
TextPropertySetevents during the re-insertion to avoid triggering the MAUI binding/handler layer (which would interpret the interim empty state as intentional text clearing)
Added SuppressTextPropertySet(bool) method and _suppressTextPropertySet field to MauiTextField.cs to support this suppression.
Files changed:
src/Core/src/Platform/iOS/MauiTextField.cs— Added_suppressTextPropertySetflag andSuppressTextPropertySet(bool)methodsrc/Core/src/Platform/iOS/TextFieldExtensions.cs— ModifiedUpdateIsPasswordto capture and restore text with event suppression; also adds braces toelsebranch for consistency
Scope: This change only affects the iOS code path (entry.IsPassword && textField.IsFirstResponder). The non-focused path and all other platforms are unaffected.
Issues Fixed
Fixes #30085
Platforms Affected
- iOS — bug fix (only platform exhibiting this behavior)
- Android, Windows, MacCatalyst — no behavior change (platform code not modified)
Code Review: ⚠️ Issues Found
Code Review — PR #30572
Files reviewed:
src/Core/src/Platform/iOS/MauiTextField.cssrc/Core/src/Platform/iOS/TextFieldExtensions.cs
🔴 Critical Issues
1. Missing try-finally Around Event Suppression
File: src/Core/src/Platform/iOS/TextFieldExtensions.cs (lines 35–40)
Flagged by: copilot-pull-request-reviewer (unresolved)
Problem:
If an exception is thrown during textField.Text = string.Empty or textField.InsertText(currentText), the call to mauiTextField.SuppressTextPropertySet(false) will never execute. This leaves _suppressTextPropertySet = true permanently on that MauiTextField instance, silently breaking all future TextPropertySet event delivery — meaning the MAUI binding/handler layer will never be notified of user text changes again.
Current code (unsafe):
mauiTextField.SuppressTextPropertySet(true);
textField.Text = string.Empty; // Could throw
textField.InsertText(currentText); // Could throw
mauiTextField.SuppressTextPropertySet(false); // Won't run on exceptionRequired fix:
mauiTextField.SuppressTextPropertySet(true);
try
{
textField.Text = string.Empty;
textField.InsertText(currentText);
}
finally
{
mauiTextField.SuppressTextPropertySet(false); // Always runs
}Alternatively, implement IDisposable on a scope struct or use a local helper to make the pattern safer and more expressive.
2. No Tests Added
Flagged by: Reviewer jsuarezruiz (unresolved)
Problem:
The reviewer explicitly requested a test in the PR discussion. The PR author acknowledged the difficulty but no tests were added. There is zero automated verification that:
- The bug is caught by tests (tests fail without the fix)
- The fix is correct (tests pass with the fix)
Recommended location: src/Controls/tests/DeviceTests/Elements/Entry/EntryTests.iOS.cs
(or add to an existing file covering Entry/password behavior)
Suggested test scenario:
- Create
EntrywithIsPassword = true, set text via binding/handler - Toggle
IsPasswordtofalse(show text) - Toggle
IsPasswordback totrue(hide text) - Verify
Entry.Textis unchanged after both toggles - Optionally verify the text field's native content matches
The write-tests-agent can help create this test.
🟡 Suggestions
3. Extract Pattern-Match Cast Before if Condition
File: src/Core/src/Platform/iOS/TextFieldExtensions.cs (line 33)
Flagged by: copilot-pull-request-reviewer (marked resolved, but suggestion was not applied)
Current:
if (!string.IsNullOrEmpty(currentText) && textField is MauiTextField mauiTextField)Suggested:
var mauiTextField = textField as MauiTextField;
if (!string.IsNullOrEmpty(currentText) && mauiTextField != null)Why: Mixing a null check (IsNullOrEmpty) with a pattern-match type test in a compound condition reduces readability. Extracting the cast makes the intent clearer and allows mauiTextField to be used if needed outside the if block.
4. Missing XML Documentation on _suppressTextPropertySet
File: src/Core/src/Platform/iOS/MauiTextField.cs (line 87)
Flagged by: copilot-pull-request-reviewer (marked resolved, but suggestion was not applied)
Current:
bool _suppressTextPropertySet;Suggested addition:
// Temporarily suppresses TextPropertySet during programmatic text re-insertion
// (e.g., when restoring text after a SecureTextEntry toggle on iOS).
bool _suppressTextPropertySet;An inline comment (rather than XML doc) is appropriate here since it's a private field.
5. Missing Newline at End of MauiTextField.cs
File: src/Core/src/Platform/iOS/MauiTextField.cs
The diff shows \ No newline at end of file. This was already the case in the original file, so the PR does not introduce a regression — but it's worth cleaning up since code is being added nearby. Most editors and dotnet format will flag this.
✅ Looks Good
- Fix approach is correct: Capture text before
SecureTextEntry = true→ suppress events → clear → re-insert viaInsertText()→ restore events. This correctly handles the iOS platform behavior of resetting text when enabling secure entry while focused. SuppressTextPropertySetscoped asinternal: Not exposing this as public API is appropriate; it's an implementation detail betweenMauiTextFieldandTextFieldExtensions.string.IsNullOrEmpty(currentText)guard: Correctly handlesnull(sinceUITextField.Textisstring?) and avoids unnecessary work for empty text.- Only activates when field is focused and switching TO password: The fix is appropriately scoped to
entry.IsPassword && textField.IsFirstResponder, which is exactly when iOS exhibits the text-clearing behavior. elsebrace addition: Adds{}braces to the previously brace-freeelseto match standard code style — cosmetic improvement, no functional impact.[iOS]title prefix: Correctly scopes the issue to iOS only.
|
🚀 Dogfood this PR with:
curl -fsSL https://raw.githubusercontent.com/dotnet/maui/main/eng/scripts/get-maui-pr.sh | bash -s -- 30572Or
iex "& { $(irm https://raw.githubusercontent.com/dotnet/maui/main/eng/scripts/get-maui-pr.ps1) } 30572" |
…test - Wrap text manipulation in try-finally to ensure SuppressTextPropertySet is always reset to false, even if an exception occurs during textField.Text or InsertText calls - Add XML doc comment to _suppressTextPropertySet field explaining its purpose and usage context - Add iOS device test verifying that toggling IsPassword preserves the previously entered text (covers issue dotnet#30085) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Review SummaryOverall: The fix approach is sound — capturing text before the Changes applied on
|
…ext (#30572) <!-- 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! <!-- !!!!!!! MAIN IS THE ONLY ACTIVE BRANCH. MAKE SURE THIS PR IS TARGETING MAIN. !!!!!!! --> ### Root Cause: When toggling the IsPassword property, the UpdateIsPassword method does not properly preserve and restore the current text after toggling. ### Description of Change Modified the UpdateIsPassword method in TextFieldExtensions to temporarily suppress the TextPropertySet event while clearing and reinserting the text for password fields. This ensures the text update does not trigger unintended side effects. <!-- Enter description of the fix in this section --> ### Issues Fixed <!-- Please make sure that there is a bug logged for the issue being fixed. The bug should describe the problem and how to reproduce it. --> Fixes #30085 ### Tested the behaviour in the following platforms - [x] Windows - [x] Android - [x] iOS - [x] Mac | Before Issue Fix | After Issue Fix | |----------|----------| | <video src="https://github.com/user-attachments/assets/187e7024-1e4f-4683-84ba-af41451002ab"> | <video src="https://github.com/user-attachments/assets/b3707065-6b8a-42d6-bd0b-3611d2567b54"> | <!-- Are you targeting main? All PRs should target the main branch unless otherwise noted. --> --------- Co-authored-by: Shane Neuville <5375137+PureWeen@users.noreply.github.com> 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: Gerald Versluis <gerald.versluis@microsoft.com> Co-authored-by: Ing. Jorge Perales Díaz <slipknot_jpd@hotmail.com> Co-authored-by: Vignesh-SF3580 <102575140+Vignesh-SF3580@users.noreply.github.com> Co-authored-by: Sven Boemer <sbomer@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Tamilarasan-Paranthaman <Tamilarasan-Paranthaman@users.noreply.github.com> Co-authored-by: Jakub Florkowski <kubaflo123@gmail.com>
…ext (#30572) <!-- 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! <!-- !!!!!!! MAIN IS THE ONLY ACTIVE BRANCH. MAKE SURE THIS PR IS TARGETING MAIN. !!!!!!! --> ### Root Cause: When toggling the IsPassword property, the UpdateIsPassword method does not properly preserve and restore the current text after toggling. ### Description of Change Modified the UpdateIsPassword method in TextFieldExtensions to temporarily suppress the TextPropertySet event while clearing and reinserting the text for password fields. This ensures the text update does not trigger unintended side effects. <!-- Enter description of the fix in this section --> ### Issues Fixed <!-- Please make sure that there is a bug logged for the issue being fixed. The bug should describe the problem and how to reproduce it. --> Fixes #30085 ### Tested the behaviour in the following platforms - [x] Windows - [x] Android - [x] iOS - [x] Mac | Before Issue Fix | After Issue Fix | |----------|----------| | <video src="https://github.com/user-attachments/assets/187e7024-1e4f-4683-84ba-af41451002ab"> | <video src="https://github.com/user-attachments/assets/b3707065-6b8a-42d6-bd0b-3611d2567b54"> | <!-- Are you targeting main? All PRs should target the main branch unless otherwise noted. --> --------- Co-authored-by: Shane Neuville <5375137+PureWeen@users.noreply.github.com> 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: Gerald Versluis <gerald.versluis@microsoft.com> Co-authored-by: Ing. Jorge Perales Díaz <slipknot_jpd@hotmail.com> Co-authored-by: Vignesh-SF3580 <102575140+Vignesh-SF3580@users.noreply.github.com> Co-authored-by: Sven Boemer <sbomer@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Tamilarasan-Paranthaman <Tamilarasan-Paranthaman@users.noreply.github.com> Co-authored-by: Jakub Florkowski <kubaflo123@gmail.com>
…ext (#30572) <!-- 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! <!-- !!!!!!! MAIN IS THE ONLY ACTIVE BRANCH. MAKE SURE THIS PR IS TARGETING MAIN. !!!!!!! --> ### Root Cause: When toggling the IsPassword property, the UpdateIsPassword method does not properly preserve and restore the current text after toggling. ### Description of Change Modified the UpdateIsPassword method in TextFieldExtensions to temporarily suppress the TextPropertySet event while clearing and reinserting the text for password fields. This ensures the text update does not trigger unintended side effects. <!-- Enter description of the fix in this section --> ### Issues Fixed <!-- Please make sure that there is a bug logged for the issue being fixed. The bug should describe the problem and how to reproduce it. --> Fixes #30085 ### Tested the behaviour in the following platforms - [x] Windows - [x] Android - [x] iOS - [x] Mac | Before Issue Fix | After Issue Fix | |----------|----------| | <video src="https://github.com/user-attachments/assets/187e7024-1e4f-4683-84ba-af41451002ab"> | <video src="https://github.com/user-attachments/assets/b3707065-6b8a-42d6-bd0b-3611d2567b54"> | <!-- Are you targeting main? All PRs should target the main branch unless otherwise noted. --> --------- Co-authored-by: Shane Neuville <5375137+PureWeen@users.noreply.github.com> 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: Gerald Versluis <gerald.versluis@microsoft.com> Co-authored-by: Ing. Jorge Perales Díaz <slipknot_jpd@hotmail.com> Co-authored-by: Vignesh-SF3580 <102575140+Vignesh-SF3580@users.noreply.github.com> Co-authored-by: Sven Boemer <sbomer@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Tamilarasan-Paranthaman <Tamilarasan-Paranthaman@users.noreply.github.com> Co-authored-by: Jakub Florkowski <kubaflo123@gmail.com>
…ext (#30572) <!-- 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! <!-- !!!!!!! MAIN IS THE ONLY ACTIVE BRANCH. MAKE SURE THIS PR IS TARGETING MAIN. !!!!!!! --> ### Root Cause: When toggling the IsPassword property, the UpdateIsPassword method does not properly preserve and restore the current text after toggling. ### Description of Change Modified the UpdateIsPassword method in TextFieldExtensions to temporarily suppress the TextPropertySet event while clearing and reinserting the text for password fields. This ensures the text update does not trigger unintended side effects. <!-- Enter description of the fix in this section --> ### Issues Fixed <!-- Please make sure that there is a bug logged for the issue being fixed. The bug should describe the problem and how to reproduce it. --> Fixes #30085 ### Tested the behaviour in the following platforms - [x] Windows - [x] Android - [x] iOS - [x] Mac | Before Issue Fix | After Issue Fix | |----------|----------| | <video src="https://github.com/user-attachments/assets/187e7024-1e4f-4683-84ba-af41451002ab"> | <video src="https://github.com/user-attachments/assets/b3707065-6b8a-42d6-bd0b-3611d2567b54"> | <!-- Are you targeting main? All PRs should target the main branch unless otherwise noted. --> --------- Co-authored-by: Shane Neuville <5375137+PureWeen@users.noreply.github.com> 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: Gerald Versluis <gerald.versluis@microsoft.com> Co-authored-by: Ing. Jorge Perales Díaz <slipknot_jpd@hotmail.com> Co-authored-by: Vignesh-SF3580 <102575140+Vignesh-SF3580@users.noreply.github.com> Co-authored-by: Sven Boemer <sbomer@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Tamilarasan-Paranthaman <Tamilarasan-Paranthaman@users.noreply.github.com> Co-authored-by: Jakub Florkowski <kubaflo123@gmail.com>
…ext (#30572) <!-- 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! <!-- !!!!!!! MAIN IS THE ONLY ACTIVE BRANCH. MAKE SURE THIS PR IS TARGETING MAIN. !!!!!!! --> ### Root Cause: When toggling the IsPassword property, the UpdateIsPassword method does not properly preserve and restore the current text after toggling. ### Description of Change Modified the UpdateIsPassword method in TextFieldExtensions to temporarily suppress the TextPropertySet event while clearing and reinserting the text for password fields. This ensures the text update does not trigger unintended side effects. <!-- Enter description of the fix in this section --> ### Issues Fixed <!-- Please make sure that there is a bug logged for the issue being fixed. The bug should describe the problem and how to reproduce it. --> Fixes #30085 ### Tested the behaviour in the following platforms - [x] Windows - [x] Android - [x] iOS - [x] Mac | Before Issue Fix | After Issue Fix | |----------|----------| | <video src="https://github.com/user-attachments/assets/187e7024-1e4f-4683-84ba-af41451002ab"> | <video src="https://github.com/user-attachments/assets/b3707065-6b8a-42d6-bd0b-3611d2567b54"> | <!-- Are you targeting main? All PRs should target the main branch unless otherwise noted. --> --------- Co-authored-by: Shane Neuville <5375137+PureWeen@users.noreply.github.com> 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: Gerald Versluis <gerald.versluis@microsoft.com> Co-authored-by: Ing. Jorge Perales Díaz <slipknot_jpd@hotmail.com> Co-authored-by: Vignesh-SF3580 <102575140+Vignesh-SF3580@users.noreply.github.com> Co-authored-by: Sven Boemer <sbomer@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Tamilarasan-Paranthaman <Tamilarasan-Paranthaman@users.noreply.github.com> Co-authored-by: Jakub Florkowski <kubaflo123@gmail.com>
## 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
…ext (dotnet#30572) <!-- 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! <!-- !!!!!!! MAIN IS THE ONLY ACTIVE BRANCH. MAKE SURE THIS PR IS TARGETING MAIN. !!!!!!! --> ### Root Cause: When toggling the IsPassword property, the UpdateIsPassword method does not properly preserve and restore the current text after toggling. ### Description of Change Modified the UpdateIsPassword method in TextFieldExtensions to temporarily suppress the TextPropertySet event while clearing and reinserting the text for password fields. This ensures the text update does not trigger unintended side effects. <!-- Enter description of the fix in this section --> ### Issues Fixed <!-- Please make sure that there is a bug logged for the issue being fixed. The bug should describe the problem and how to reproduce it. --> Fixes dotnet#30085 ### Tested the behaviour in the following platforms - [x] Windows - [x] Android - [x] iOS - [x] Mac | Before Issue Fix | After Issue Fix | |----------|----------| | <video src="https://github.com/user-attachments/assets/187e7024-1e4f-4683-84ba-af41451002ab"> | <video src="https://github.com/user-attachments/assets/b3707065-6b8a-42d6-bd0b-3611d2567b54"> | <!-- Are you targeting main? All PRs should target the main branch unless otherwise noted. --> --------- Co-authored-by: Shane Neuville <5375137+PureWeen@users.noreply.github.com> 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: Gerald Versluis <gerald.versluis@microsoft.com> Co-authored-by: Ing. Jorge Perales Díaz <slipknot_jpd@hotmail.com> Co-authored-by: Vignesh-SF3580 <102575140+Vignesh-SF3580@users.noreply.github.com> Co-authored-by: Sven Boemer <sbomer@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Tamilarasan-Paranthaman <Tamilarasan-Paranthaman@users.noreply.github.com> Co-authored-by: Jakub Florkowski <kubaflo123@gmail.com>
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 toggling the IsPassword property, the UpdateIsPassword method does not properly preserve and restore the current text after toggling.
Description of Change
Modified the UpdateIsPassword method in TextFieldExtensions to temporarily suppress the TextPropertySet event while clearing and reinserting the text for password fields. This ensures the text update does not trigger unintended side effects.
Issues Fixed
Fixes #30085
Tested the behaviour in the following platforms
Screen.Recording.2025-07-11.at.5.11.32.PM.mov
Screen.Recording.2025-07-11.at.5.09.20.PM.mov