[Testing] Feature matrix UITest Cases for Visual Transform Control#32799
Conversation
|
Hey there @@HarishKumarSF4517! 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 |
|
Azure Pipelines successfully started running 3 pipeline(s). |
|
/azp run |
|
Azure Pipelines successfully started running 3 pipeline(s). |
There was a problem hiding this comment.
Pull request overview
This pull request adds a VisualTransform feature matrix to the TestCases.HostApp, enabling interactive testing of visual transformation properties (rotation, scale, translation, anchor points, and shadow) on UI elements. The implementation includes view models, pages for control and options, and a corresponding UI test with snapshot validation for iOS.
- Introduces a new gallery entry for VisualTransform feature matrix testing
- Implements interactive pages for manipulating and resetting transformation properties
- Adds snapshot-based UI test verification
Reviewed changes
Copilot reviewed 7 out of 92 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| CorePageView.cs | Adds gallery entry for VisualTransform feature matrix navigation |
| VisualTransform_RotationYWithScaleY.png | iOS snapshot baseline for UI test validation |
|
/azp run |
|
Azure Pipelines successfully started running 3 pipeline(s). |
859f2fb to
0c2a8c3
Compare
|
🚀 Dogfood this PR with:
curl -fsSL https://raw.githubusercontent.com/dotnet/maui/main/eng/scripts/get-maui-pr.sh | bash -s -- 32799Or
iex "& { $(irm https://raw.githubusercontent.com/dotnet/maui/main/eng/scripts/get-maui-pr.ps1) } 32799" |
🤖 AI Summary📊 Expand Full Review🔍 Pre-Flight — Context & Validation📝 Review Session — Merge branch 'inflight/current' into harish_feature_matrix_visualTransform ·
|
| Reviewer | Comment | Status |
|---|---|---|
| kubaflo | Compilation error in prior commit | ✅ RESOLVED (author fixed) |
Code Quality Observations
Concerns:
VisualTransformControlPageextendsNavigationPage— this is a UI antipattern. The class name suggests a ContentPage but it wraps as a NavigationPage. This means it cannot be used inside another navigation context cleanly.- The shadow comment says
Offset = new Point(10, 10) // No offset to prevent positioning issues— the comment contradicts the code (offset IS applied). VisualTransformControlPage.xaml.csis a partial class but the class itself is defined asNavigationPagenotContentPage— the XAML file extendsContentPagebut the xaml.cs extendsNavigationPage, which is inconsistent (there's actually a separateVisualTransformControlMainPagefor the ContentPage XAML).- Shadow tests using
AnchorXWithShadowandAnchorYWithShadowexist only in Windows snapshots — suggesting these tests may be Windows-only or the category conditional compilation is platform-dependent.
Fix Candidates
| # | Source | Approach | Test Result | Files Changed | Notes |
|---|---|---|---|---|---|
| PR | PR #32799 | Add VisualTransform feature matrix test pages and snapshot tests | ⏳ PENDING (Gate) | 5 HostApp + 1 test + 105 snapshots | Testing-only PR |
🚦 Gate — Test Verification
📝 Review Session — Merge branch 'inflight/current' into harish_feature_matrix_visualTransform · 15fe1ab
Result: ✅ PASSED
Platform: ios
Mode: Full Verification (via verify-tests-fail.ps1)
Verification Summary
| Check | Expected | Actual | Result |
|---|---|---|---|
| Tests WITHOUT fix | FAIL | FAIL | ✅ |
| Tests WITH fix | PASS | PASS | ✅ |
Details
- Tests FAIL without fix ✅
- Tests PASS with fix ✅
Note: This is a testing-only PR (no source code changes). The verification script compared against the main branch merge base (c5fadf82), identifying 85 infrastructure files from inflight/current as "fix files". Reverting those caused tests to fail (likely due to VisualRegressionTester.cs being reverted), and restoring them allowed tests to pass. The HostApp built successfully with 0 errors for iOS. All 19 active VisualTransform tests compile and run correctly on iOS.
Test Method Count
- 19 active snapshot tests (Rotation, RotationX, RotationY, Scale, ScaleX, ScaleY, AnchorX, AnchorY combinations)
- Shadow interaction tests correctly disabled via
#if TEST_FAILS_ON_IOS && TEST_FAILS_ON_CATALYST && TEST_FAILS_ON_ANDROID
Fix Files Identified: Infrastructure files from inflight/current vs main (unrelated to this PR's changes - PR only adds test files and snapshots)
🔧 Fix — Analysis & Comparison
📝 Review Session — Merge branch 'inflight/current' into harish_feature_matrix_visualTransform · 15fe1ab
Fix Candidates
| # | Source | Approach | Test Result | Files Changed | Notes |
|---|---|---|---|---|---|
| PR | PR #32799 | Add VisualTransform feature matrix test pages + snapshot tests | ✅ PASS (Gate) | 5 HostApp + 1 test + 105 snapshots | Testing-only PR |
Note: This is a testing-only PR with no source code changes. The try-fix phase (generating alternative implementation approaches) is not applicable. The PR's tests validated via Gate.
Exhausted: N/A (Testing-only PR — no source fix to explore alternatives for)
Selected Fix: PR's approach — the only option for a testing PR; tests compile and pass on iOS
📋 Report — Final Recommendation
📝 Review Session — Merge branch 'inflight/current' into harish_feature_matrix_visualTransform · 15fe1ab
⚠️ Final Recommendation: REQUEST CHANGES
Summary
PR #32799 adds a VisualTransform feature matrix to the test application — a testing-only PR with no source code changes. The tests are well-structured and cover 19 transformation property combinations (rotation, scale, anchor points, visibility). However, there is a critical logical bug in the conditional compilation for the shadow tests that prevents them from ever running (even on Windows where the shadow bug doesn't exist), resulting in 9 orphaned Windows snapshot files.
Root Cause / Context
The PR relates to issues #32724 (iOS/macOS shadow+transform bug) and #32731 (Android shadow+transform bug). Windows is NOT listed as affected. The shadow tests were disabled to avoid testing known broken behavior, but the #if condition used is logically incorrect.
Issues Found
🔴 Critical: Broken #if Condition for Shadow Tests
File: src/Controls/tests/TestCases.Shared.Tests/Tests/FeatureMatrix/VisualElementFeatureTests.cs (line 22)
Current code:
#if TEST_FAILS_ON_IOS && TEST_FAILS_ON_CATALYST && TEST_FAILS_ON_ANDROIDProblem: This condition requires ALL THREE platform symbols to be defined simultaneously. Since each build targets only one platform at a time, this condition is NEVER true. The shadow tests are effectively disabled on ALL platforms — including Windows, where the shadow bug doesn't exist and tests should run.
Evidence: 9 Windows shadow snapshot files exist in the PR (VisualTransform_AnchorXWithShadow.png, etc.) — these were presumably generated by running the tests on Windows, but with the current condition, the tests can never run on Windows to regenerate or validate them.
Correct fix (to enable only on Windows, disable on iOS/macOS/Android):
#if !TEST_FAILS_ON_IOS && !TEST_FAILS_ON_CATALYST && !TEST_FAILS_ON_ANDROIDOR (if intent is to disable on ALL platforms temporarily):
- Remove the shadow tests and Windows snapshots entirely, add them back when bugs are fixed
- OR use
#if falsewith a clear comment
🔴 Orphaned Windows Shadow Snapshots
Files: 9 snapshot PNG files in src/Controls/tests/TestCases.WinUI.Tests/snapshots/windows/ with Shadow in the name
These files exist for tests that can never run with the current #if condition. They will never be validated or regenerated by CI, creating dead weight and confusion.
🟡 Category Mismatch
File: VisualElementFeatureTests.cs line 7: [Category(UITestCategories.Shadow)]
The 19 active (non-shadow) tests are classified as Shadow category. These tests cover Rotation, Scale, AnchorX, AnchorY — not shadow behavior. This means:
- These tests run in Shadow CI pipelines (alongside
SafeAreaEdges) - They DON'T run in any appropriate visual transform category
🟡 Comment Contradiction in ViewModel
File: VisualTransformViewModel.cs
Offset = new Point(10, 10) // No offset to prevent positioning issuesThe comment says "No offset" but the code applies (10, 10) offset.
🟡 No Tolerance on VerifyScreenshot for 3D Transforms
3D transform tests (RotationX, RotationY, RotationXWithRotationY) may be flaky without tolerance. Consider:
VerifyScreenshot(tolerance: 0.5, retryTimeout: TimeSpan.FromSeconds(2));Fix Quality Assessment
The testing infrastructure itself (ViewModel, pages, AutomationIds, reset workflow) is well-implemented. The core issue is the shadow test conditional that defeats the purpose of having Windows shadow snapshots.
Suggested Changes
- Fix
#ifcondition - Change&&to the correct!OR&&!logic depending on intent - Remove orphaned Windows shadow snapshots - OR fix the condition to allow them to run
- Fix category - Change
[Category(UITestCategories.Shadow)]to an appropriate category (e.g.,UITestCategories.ViewBaseTestsor add a newVisualTransformcategory) - Fix comment in ViewModel shadow creation
📋 Expand PR Finalization Review
Title: ✅ Good
Current: [Testing] Feature matrix UITest Cases for Visual Transform Control
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!
This pull request adds a VisualTransform feature matrix to the test infrastructure, covering interactive testing of VisualElement transform properties (Rotation, RotationX, RotationY, Scale, ScaleX, ScaleY, TranslationX, TranslationY, AnchorX, AnchorY, IsVisible, Shadow) via Appium UI tests with reference snapshots.
Description of Change
HostApp — Feature Matrix Pages
CorePageView.cs— RegisteredVisualTransformControlPagein the gallery page list under "VisualTransform Feature Matrix".VisualTransformControlPage.xaml/.xaml.cs— Main control page (wrapped in aNavigationPage). Displays a 120×120Borderelement ("TransformableElement") whose transform properties are two-way bound to the ViewModel. Toolbar provides Options (navigate to property editor) and Reset actions.VisualTransformOptionsPage.xaml/.xaml.cs— Options page withEntryfields for each transform property (Rotation, RotationX, RotationY, Scale, ScaleX, ScaleY, TranslationX, TranslationY, AnchorX, AnchorY) plus checkboxes for IsVisible and HasShadow. Changes are committed via Apply (pops back to control page).VisualTransformViewModel.cs—INotifyPropertyChangedViewModel holding all transform state. Exposes aResetCommandthat restores all properties to their defaults.HasShadowdrives a derivedBoxShadowproperty (Shadow object is constructed internally; onlyHasShadowis publicly settable).
Tests — NUnit UI Tests
-
VisualElementFeatureTests.cs— ClassVisualTransformFeatureTestswith 19 active screenshot tests covering:- Single-property:
IsVisible,Rotation,RotationX,RotationY,Scale,ScaleX,ScaleY - Combined:
RotationWithRotationX,RotationWithScale,RotationXWithScaleX,RotationXWithRotationY,RotationYWithScaleY,ScaleWithAnchorX,ScaleXWithAnchorY,ScaleYWithAnchorX,AnchorXWithAnchorY,AnchorX_ScaleYWithRotation,AnchorY_ScaleWithRotationY,AnchorY_ScaleXWithRotationX
Each test: Resets state → navigates to Options → sets values → applies → calls
VerifyScreenshot(). - Single-property:
-
Shadow-combination tests are disabled on all platforms (iOS, MacCatalyst, Android) using
#if TEST_FAILS_ON_IOS && TEST_FAILS_ON_CATALYST && TEST_FAILS_ON_ANDROIDpending resolution of platform-level bugs (see Issues Fixed).
Snapshot Reference Images
Added reference screenshots for all 19 active tests across four platforms: Android, iOS, Mac (Catalyst), and Windows.
Known Platform Issues (Shadow Tests Disabled)
The shadow-interaction tests (VisualTransform_IsShadow, VisualTransform_RotationWithShadow, etc.) are currently disabled on all platforms because applying Shadow to an element interferes with its visual transform properties:
- iOS / MacCatalyst — Issue [iOS, macOS] Applying Shadow property affects the properties in Visual Transform Matrix. #32724
- Android — Issue [Android] Applying Shadow property affects the properties in Visual Transform Matrix #32731
These tests will be re-enabled once the underlying platform bugs are resolved.
Issues Fixed
- Identified: [iOS, macOS] Applying Shadow property affects the properties in Visual Transform Matrix. #32724
- Identified: [Android] Applying Shadow property affects the properties in Visual Transform Matrix #32731
Platforms Tested
- Android
- iOS
- Mac Catalyst
- Windows
Code Review: ⚠️ Issues Found
Code Review — PR #32799
🔴 Critical Issues
1. Wrong test category: [Category(UITestCategories.Shadow)] on a non-Shadow test class
File: src/Controls/tests/TestCases.Shared.Tests/Tests/FeatureMatrix/VisualElementFeatureTests.cs
Problem: The class VisualTransformFeatureTests is decorated with [Category(UITestCategories.Shadow)], but all 19 active tests are Visual Transform tests (Rotation, Scale, AnchorX/Y, IsVisible, etc.) — not shadow tests. The shadow-related tests are entirely #if-guarded out on all platforms:
#if TEST_FAILS_ON_IOS && TEST_FAILS_ON_CATALYST && TEST_FAILS_ON_ANDROID
// Shadow tests — never compiled/executed
#endifImpact: These 19 active tests will run under the Shadow CI lane rather than a more appropriate category. Tests for non-shadow transforms may be skipped or delayed if the Shadow lane is deprioritized, and they won't appear when searching for Visual Transform tests in CI results.
Recommendation: Change the category to a relevant one. Most appropriate is UITestCategories.VisualElement or UITestCategories.Visual, or pick the closest existing category that matches transform behavior. Check UITestCategories.cs for what's available. At a minimum, remove Shadow from the class-level [Category] if shadow tests are disabled.
🟡 Suggestions
2. File name doesn't match class name
File: src/Controls/tests/TestCases.Shared.Tests/Tests/FeatureMatrix/VisualElementFeatureTests.cs
Problem: The file is named VisualElementFeatureTests.cs but the class inside is VisualTransformFeatureTests. MAUI convention is for the file name to match the primary class name.
Recommendation: Rename the file to VisualTransformFeatureTests.cs to match the class.
3. Three test names omit RotationY which they also set
File: src/Controls/tests/TestCases.Shared.Tests/Tests/FeatureMatrix/VisualElementFeatureTests.cs
Problem: Three tests configure RotationY = 45 in addition to what their name describes:
| Test name | Also sets (unnamed) |
|---|---|
VisualTransform_ScaleWithAnchorX |
RotationY = 45 |
VisualTransform_ScaleXWithAnchorY |
RotationY = 45 |
VisualTransform_ScaleYWithAnchorX |
RotationY = 45 |
Example (ScaleWithAnchorX):
App.EnterText("ScaleEntry", "2");
App.EnterText("RotationYEntry", "45"); // Not mentioned in test name
App.EnterText("AnchorXEntry", "1");Recommendation: Either rename the tests to include WithRotationY (e.g., VisualTransform_ScaleWithAnchorXAndRotationY) or remove the extra RotationY entries if they're unintentional. The test snapshots were captured with RotationY applied, so changing behavior would invalidate snapshots.
4. PushAsync called without await in constructor
File: src/Controls/tests/TestCases.HostApp/FeatureMatrix/VisualTransform/VisualTransformControlPage.xaml.cs
Problem:
public VisualTransformControlPage()
{
_viewModel = new VisualTransformViewModel();
PushAsync(new VisualTransformControlMainPage(_viewModel)); // No await!
}Constructors cannot be async, so PushAsync returns a Task that is not awaited. This means navigation is fire-and-forget. While this pattern is used elsewhere in MAUI's gallery/test pages (and generally works because the navigation is queued), it may produce CS4014 warnings and can behave unpredictably in edge cases.
Recommendation: Use OnNavigatedTo override or Appearing event to trigger the async push, or suppress with _ = PushAsync(...) with a comment explaining intent.
5. Shadow comment contradicts actual offset
File: src/Controls/tests/TestCases.HostApp/FeatureMatrix/VisualTransform/VisualTransformViewModel.cs
Problem:
BoxShadow = value
? new Shadow
{
Radius = 2,
Opacity = 0.9f,
Brush = new SolidColorBrush(Colors.Gray),
Offset = new Point(10, 10) // No offset to prevent positioning issues
}The comment says "No offset to prevent positioning issues" but the Offset is new Point(10, 10), which is a 10-pixel offset. This is confusing and misleading.
Recommendation: Either set Offset = new Point(0, 0) to match the comment, or fix the comment: // Small offset for visual differentiation.
ℹ️ Info (Non-blocking)
6. Missing newline at end of files
Files:
src/Controls/tests/TestCases.HostApp/FeatureMatrix/VisualTransform/VisualTransformControlPage.xaml.cs—No newline at end of filesrc/Controls/tests/TestCases.HostApp/FeatureMatrix/VisualTransform/VisualTransformOptionsPage.xaml.cs—No newline at end of file
Standard coding convention requires a newline at end of file. Minor but easy to fix.
✅ Looks Good
- VisualTransformViewModel correctly implements
INotifyPropertyChangedwithOnPropertyChanged([CallerMemberName])pattern. ResetCommandis properly exposed asICommandand restores all default values.- AutomationIds are consistently set on all interactive elements (
RotationEntry,ScaleEntry,AnchorXEntry, etc.). - Shadow-combination tests are responsibly disabled via
#ifguards with explanatory comments referencing the known issues ([iOS, macOS] Applying Shadow property affects the properties in Visual Transform Matrix. #32724, [Android] Applying Shadow property affects the properties in Visual Transform Matrix #32731). - Snapshot images are added for Android, iOS, Mac, and Windows platforms.
BoxShadowsetter isprivate— onlyHasShadowis publicly settable, which correctly encapsulates the shadow object creation logic.- The feature matrix follows the established pattern (NavigationPage shell, main control page, options page, ViewModel).
kubaflo
left a comment
There was a problem hiding this comment.
HI @HarishKumarSF4517 could you please review the Ai Summary comment? It seems that there's a compilation error
0c2a8c3 to
1519a58
Compare
Hi @kubaflo , I have Addressed the requested changes. |
|
/azp run maui-pr-uitests |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Hi @kubaflo, I have addressed the changes suggested in the AI summary. Note: From the previous summary given by AI. It recommended to use Shadow Category, since the Visual Category was removed from the group. I have attached the snap and commit link for reference: PR link(Visual category removed): #32990
Updates made:
|
8bba1c8 to
4d7720e
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>
…2525) >[!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! This pull request introduces a new Shell feature matrix to the test cases host app, enabling comprehensive testing and demonstration of Shell and Shell Flyout capabilities. The changes add new pages, controls, and a view model to support customizable Shell Flyout behaviors and UI elements, including dynamic menu items and property bindings. The tests validate the Shell Flyout Page , including properties such as FlyoutBehavior, FlyoutHeader, FlyoutFooter, FlyoutBackdrop, FlyoutBackgroundColor, FlyoutBackgroundImage, FlyoutBackgroundImageAspect, FlyoutVerticalScrollMode, FlyoutIcon, FlyoutDisplayOptions, FlyoutWidth, FlyoutHeight, FlyoutItemIsVisible, FlyoutHeaderBehavior, MenuItemTemplate, ItemTemplate, FlyoutIsPresented. **Shell feature matrix integration:** * Added `ShellFeaturePage` and `ShellFeatureMainPage` to the feature matrix, allowing navigation to a new Shell test area from the core views. (`CorePageView.cs`, `ShellFeaturePage.xaml`, `ShellFeaturePage.xaml.cs`) [[1]](diffhunk://#diff-adf403d0453beb6436df5f6e4d418d2f62d9c7a1b549a22b048879127df36a38R120) [[2]](diffhunk://#diff-429088ce96d697ab4ebcb64f4f34eab95990318df0e699a206770e487cc5f99cR1-R16) [[3]](diffhunk://#diff-d9fe6832827db8c2b917b1667eb42de532a901608d7f118f002848d9a7fc5018R1-R26) **Shell Flyout demonstration and customization:** * Introduced `ShellFlyoutControlPage` with extensive bindings for Shell Flyout properties and templates, supporting dynamic customization and demonstration of Shell Flyout features. (`ShellFlyoutControlPage.xaml`, `ShellFlyoutControlPage.xaml.cs`) [[1]](diffhunk://#diff-3a9efdaa6e9a34aee2ebe539712716dad7cdcdd706c3ba78eb3740128120541eR1-R81) [[2]](diffhunk://#diff-bee4c2ead6ccb4b4e65b00d9fa652b7a497d40c0f130d5d6de20c27edd8cfb79R1-R48) * Implemented event handlers and logic for toggling the flyout, changing flyout behavior, and navigating to options, as well as generating 40 dynamic menu items for testing. (`ShellFlyoutControlPage.xaml.cs`) **ViewModel for Shell Flyout customization:** * Added `ShellViewModel` with bindable properties for all Shell Flyout aspects (e.g., header, footer, behavior, templates, background, etc.), enabling property change notifications and supporting UI binding in the Shell Flyout demonstration. (`ShellViewModel.cs`) - dotnet#32416 - dotnet#32417 - dotnet#32419 - dotnet#32476 https://github.com/user-attachments/assets/7b4eb1a6-f994-4510-b4cd-cfeb901edf88
> [!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! This pull request adds a comprehensive new brushes feature matrix test page to the controls test app, enabling interactive testing and configuration of brush, stroke, and shadow features, including solid, linear, and radial gradients. It introduces two new pages—one for visualizing and comparing brush features and another for configuring brush options—along with the necessary navigation and event handling logic. **New Brushes Feature Matrix functionality:** * Added a new entry for "Brushes Feature Matrix" to the gallery page factory list, making the new test page accessible from the app's main navigation. * Implemented the `BrushesControlPage` and `BrushesControlMainPage` classes to provide a navigation page and main content page for brush feature testing, including event handlers for comparing brushes and navigating to options. * Created the `BrushesControlPage.xaml` UI, which displays the current brush, stroke, and shadow settings, allows brush comparison, and shows selected color details. **Brush options and customization:** * Added a detailed `BrushesOptionsPage` (XAML and code-behind) that lets users select and configure brush types (none, solid, linear, radial), shadow types, stroke types, opacity, alternate variants, and color selections, with all changes bound to a shared `BrushesViewModel`. [[1]](diffhunk://#diff-a0b81253f3786054d00a4400d1fca4280fef128db5e618e0fae7bc845b7b70d8R1-R242) [[2]](diffhunk://#diff-f1180dfb2805a40c7a208076e415971e8e6639f58b9091c0a166c975671374d8R1-R130) https://github.com/user-attachments/assets/c4280d48-ebb3-45d3-a5bf-3388ea32e459
> [!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! This pull request introduces a complete BindableLayout Feature Matrix test page to the controls test app, enabling interactive testing of BindableLayout behavior across multiple layout types and providing direct setting/getting verification for bindable properties, templates, and item updates. **New BindableLayout Feature Matrix Functionality** - Added a new entry for “BindableLayout Feature Matrix” to the gallery page list, allowing easy navigation to the new test page from the main UI. - Implemented the BindableLayoutControlPage (XAML and code-behind), which serves as the main test page for verifying BindableLayout behavior with StackLayout, FlexLayout, and Grid layouts. - Integrated interactive UI sections for testing ItemsSource, ItemTemplate, ItemTemplateSelector, EmptyView, and EmptyViewTemplate across supported layouts. **UI and Feature Coverage Enhancements** - Added controls to add, remove, and replace items by index to validate dynamic item updates and ensure BindableLayout responds correctly to collection changes. - Provided dedicated Set/Get buttons for all bindable properties, enabling direct validation of API functionality. - Implemented support for testing multiple data templates and a custom DataTemplateSelector for alternating item rendering. - Added summary sections to display the current state of each layout’s bindable properties for easier debugging and verification. **Code-Behind and Logic:** * Created `BindableLayoutControlPage.xaml.cs` with logic for all interactive controls, including methods to set and get bindable properties, update UI summaries, and manage the test items collection. Includes a custom `DataTemplateSelector` for alternating item templates. https://github.com/user-attachments/assets/350df6c7-4830-4220-b7e7-3277c6cddea9
4d7720e to
da986cd
Compare
…32799) > [!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! This pull request adds a new VisualTransform feature matrix to the test application, allowing users to interactively explore and manipulate visual transformation properties (such as rotation, scale, translation, anchor points, and shadow) on a sample UI element. The implementation includes a new view model, Control page, and options page for setting transformation parameters. **VisualTransform Feature Matrix Addition** * Added a new entry for the VisualTransform feature matrix in the main gallery page list, exposing it in the test app UI (`CorePageView.cs`). * Introduced `VisualTransformControlPage` and `VisualTransformControlMainPage`, which display a demo element whose visual transformation properties can be interactively modified and reset. Navigation to an options page is supported for property editing (`VisualTransformControlPage.xaml`, `VisualTransformControlPage.xaml.cs`). [[1]](diffhunk://#diff-40b18186c25db9939b3dd1f864e20691ef45ddadcc49d56b72fc0419fd03b122R1-R146) [[2]](diffhunk://#diff-9c0f311a29ee6ea16863b27929f2874f5a6b1fec6bc0b3ee8c837156a57a4db7R1-R30) * Added `VisualTransformOptionsPage` for editing transformation properties (rotation, scale, translation, anchor points, visibility, and shadow) with two-way data binding to the view model (`VisualTransformOptionsPage.xaml`, `VisualTransformOptionsPage.xaml.cs`). [[1]](diffhunk://#diff-36dde512976f7ba703ea01eb98da9a60d16046d37112bf3637bde29e9f450701R1-R247) [[2]](diffhunk://#diff-b59d66bdd977d8aa37213fb4d545242dd3e848bf34e3e9f09006679cbecfa576R1-R21) * Implemented `VisualTransformViewModel` to encapsulate all transformation-related properties, support property change notifications, and provide a reset command for restoring default values (`VisualTransformViewModel.cs`). Identified Issue: - #32724 - #32731 https://github.com/user-attachments/assets/c3653dfc-e225-4d98-92ee-0d1836f66788 --------- 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: NafeelaNazhir <nafeela.nazhirhussain@syncfusion.com> Co-authored-by: LogishaSelvarajSF4525 <logisha.selvaraj@syncfusion.com>
…32799) > [!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! This pull request adds a new VisualTransform feature matrix to the test application, allowing users to interactively explore and manipulate visual transformation properties (such as rotation, scale, translation, anchor points, and shadow) on a sample UI element. The implementation includes a new view model, Control page, and options page for setting transformation parameters. **VisualTransform Feature Matrix Addition** * Added a new entry for the VisualTransform feature matrix in the main gallery page list, exposing it in the test app UI (`CorePageView.cs`). * Introduced `VisualTransformControlPage` and `VisualTransformControlMainPage`, which display a demo element whose visual transformation properties can be interactively modified and reset. Navigation to an options page is supported for property editing (`VisualTransformControlPage.xaml`, `VisualTransformControlPage.xaml.cs`). [[1]](diffhunk://#diff-40b18186c25db9939b3dd1f864e20691ef45ddadcc49d56b72fc0419fd03b122R1-R146) [[2]](diffhunk://#diff-9c0f311a29ee6ea16863b27929f2874f5a6b1fec6bc0b3ee8c837156a57a4db7R1-R30) * Added `VisualTransformOptionsPage` for editing transformation properties (rotation, scale, translation, anchor points, visibility, and shadow) with two-way data binding to the view model (`VisualTransformOptionsPage.xaml`, `VisualTransformOptionsPage.xaml.cs`). [[1]](diffhunk://#diff-36dde512976f7ba703ea01eb98da9a60d16046d37112bf3637bde29e9f450701R1-R247) [[2]](diffhunk://#diff-b59d66bdd977d8aa37213fb4d545242dd3e848bf34e3e9f09006679cbecfa576R1-R21) * Implemented `VisualTransformViewModel` to encapsulate all transformation-related properties, support property change notifications, and provide a reset command for restoring default values (`VisualTransformViewModel.cs`). Identified Issue: - #32724 - #32731 https://github.com/user-attachments/assets/c3653dfc-e225-4d98-92ee-0d1836f66788 --------- 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: NafeelaNazhir <nafeela.nazhirhussain@syncfusion.com> Co-authored-by: LogishaSelvarajSF4525 <logisha.selvaraj@syncfusion.com>
…32799) > [!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! This pull request adds a new VisualTransform feature matrix to the test application, allowing users to interactively explore and manipulate visual transformation properties (such as rotation, scale, translation, anchor points, and shadow) on a sample UI element. The implementation includes a new view model, Control page, and options page for setting transformation parameters. **VisualTransform Feature Matrix Addition** * Added a new entry for the VisualTransform feature matrix in the main gallery page list, exposing it in the test app UI (`CorePageView.cs`). * Introduced `VisualTransformControlPage` and `VisualTransformControlMainPage`, which display a demo element whose visual transformation properties can be interactively modified and reset. Navigation to an options page is supported for property editing (`VisualTransformControlPage.xaml`, `VisualTransformControlPage.xaml.cs`). [[1]](diffhunk://#diff-40b18186c25db9939b3dd1f864e20691ef45ddadcc49d56b72fc0419fd03b122R1-R146) [[2]](diffhunk://#diff-9c0f311a29ee6ea16863b27929f2874f5a6b1fec6bc0b3ee8c837156a57a4db7R1-R30) * Added `VisualTransformOptionsPage` for editing transformation properties (rotation, scale, translation, anchor points, visibility, and shadow) with two-way data binding to the view model (`VisualTransformOptionsPage.xaml`, `VisualTransformOptionsPage.xaml.cs`). [[1]](diffhunk://#diff-36dde512976f7ba703ea01eb98da9a60d16046d37112bf3637bde29e9f450701R1-R247) [[2]](diffhunk://#diff-b59d66bdd977d8aa37213fb4d545242dd3e848bf34e3e9f09006679cbecfa576R1-R21) * Implemented `VisualTransformViewModel` to encapsulate all transformation-related properties, support property change notifications, and provide a reset command for restoring default values (`VisualTransformViewModel.cs`). Identified Issue: - #32724 - #32731 https://github.com/user-attachments/assets/c3653dfc-e225-4d98-92ee-0d1836f66788 --------- 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: NafeelaNazhir <nafeela.nazhirhussain@syncfusion.com> Co-authored-by: LogishaSelvarajSF4525 <logisha.selvaraj@syncfusion.com>
…32799) > [!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! This pull request adds a new VisualTransform feature matrix to the test application, allowing users to interactively explore and manipulate visual transformation properties (such as rotation, scale, translation, anchor points, and shadow) on a sample UI element. The implementation includes a new view model, Control page, and options page for setting transformation parameters. **VisualTransform Feature Matrix Addition** * Added a new entry for the VisualTransform feature matrix in the main gallery page list, exposing it in the test app UI (`CorePageView.cs`). * Introduced `VisualTransformControlPage` and `VisualTransformControlMainPage`, which display a demo element whose visual transformation properties can be interactively modified and reset. Navigation to an options page is supported for property editing (`VisualTransformControlPage.xaml`, `VisualTransformControlPage.xaml.cs`). [[1]](diffhunk://#diff-40b18186c25db9939b3dd1f864e20691ef45ddadcc49d56b72fc0419fd03b122R1-R146) [[2]](diffhunk://#diff-9c0f311a29ee6ea16863b27929f2874f5a6b1fec6bc0b3ee8c837156a57a4db7R1-R30) * Added `VisualTransformOptionsPage` for editing transformation properties (rotation, scale, translation, anchor points, visibility, and shadow) with two-way data binding to the view model (`VisualTransformOptionsPage.xaml`, `VisualTransformOptionsPage.xaml.cs`). [[1]](diffhunk://#diff-36dde512976f7ba703ea01eb98da9a60d16046d37112bf3637bde29e9f450701R1-R247) [[2]](diffhunk://#diff-b59d66bdd977d8aa37213fb4d545242dd3e848bf34e3e9f09006679cbecfa576R1-R21) * Implemented `VisualTransformViewModel` to encapsulate all transformation-related properties, support property change notifications, and provide a reset command for restoring default values (`VisualTransformViewModel.cs`). Identified Issue: - #32724 - #32731 https://github.com/user-attachments/assets/c3653dfc-e225-4d98-92ee-0d1836f66788 --------- 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: NafeelaNazhir <nafeela.nazhirhussain@syncfusion.com> Co-authored-by: LogishaSelvarajSF4525 <logisha.selvaraj@syncfusion.com>
…32799) > [!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! This pull request adds a new VisualTransform feature matrix to the test application, allowing users to interactively explore and manipulate visual transformation properties (such as rotation, scale, translation, anchor points, and shadow) on a sample UI element. The implementation includes a new view model, Control page, and options page for setting transformation parameters. **VisualTransform Feature Matrix Addition** * Added a new entry for the VisualTransform feature matrix in the main gallery page list, exposing it in the test app UI (`CorePageView.cs`). * Introduced `VisualTransformControlPage` and `VisualTransformControlMainPage`, which display a demo element whose visual transformation properties can be interactively modified and reset. Navigation to an options page is supported for property editing (`VisualTransformControlPage.xaml`, `VisualTransformControlPage.xaml.cs`). [[1]](diffhunk://#diff-40b18186c25db9939b3dd1f864e20691ef45ddadcc49d56b72fc0419fd03b122R1-R146) [[2]](diffhunk://#diff-9c0f311a29ee6ea16863b27929f2874f5a6b1fec6bc0b3ee8c837156a57a4db7R1-R30) * Added `VisualTransformOptionsPage` for editing transformation properties (rotation, scale, translation, anchor points, visibility, and shadow) with two-way data binding to the view model (`VisualTransformOptionsPage.xaml`, `VisualTransformOptionsPage.xaml.cs`). [[1]](diffhunk://#diff-36dde512976f7ba703ea01eb98da9a60d16046d37112bf3637bde29e9f450701R1-R247) [[2]](diffhunk://#diff-b59d66bdd977d8aa37213fb4d545242dd3e848bf34e3e9f09006679cbecfa576R1-R21) * Implemented `VisualTransformViewModel` to encapsulate all transformation-related properties, support property change notifications, and provide a reset command for restoring default values (`VisualTransformViewModel.cs`). Identified Issue: - #32724 - #32731 https://github.com/user-attachments/assets/c3653dfc-e225-4d98-92ee-0d1836f66788 --------- 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: NafeelaNazhir <nafeela.nazhirhussain@syncfusion.com> Co-authored-by: LogishaSelvarajSF4525 <logisha.selvaraj@syncfusion.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
…otnet#32799) > [!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! This pull request adds a new VisualTransform feature matrix to the test application, allowing users to interactively explore and manipulate visual transformation properties (such as rotation, scale, translation, anchor points, and shadow) on a sample UI element. The implementation includes a new view model, Control page, and options page for setting transformation parameters. **VisualTransform Feature Matrix Addition** * Added a new entry for the VisualTransform feature matrix in the main gallery page list, exposing it in the test app UI (`CorePageView.cs`). * Introduced `VisualTransformControlPage` and `VisualTransformControlMainPage`, which display a demo element whose visual transformation properties can be interactively modified and reset. Navigation to an options page is supported for property editing (`VisualTransformControlPage.xaml`, `VisualTransformControlPage.xaml.cs`). [[1]](diffhunk://#diff-40b18186c25db9939b3dd1f864e20691ef45ddadcc49d56b72fc0419fd03b122R1-R146) [[2]](diffhunk://#diff-9c0f311a29ee6ea16863b27929f2874f5a6b1fec6bc0b3ee8c837156a57a4db7R1-R30) * Added `VisualTransformOptionsPage` for editing transformation properties (rotation, scale, translation, anchor points, visibility, and shadow) with two-way data binding to the view model (`VisualTransformOptionsPage.xaml`, `VisualTransformOptionsPage.xaml.cs`). [[1]](diffhunk://#diff-36dde512976f7ba703ea01eb98da9a60d16046d37112bf3637bde29e9f450701R1-R247) [[2]](diffhunk://#diff-b59d66bdd977d8aa37213fb4d545242dd3e848bf34e3e9f09006679cbecfa576R1-R21) * Implemented `VisualTransformViewModel` to encapsulate all transformation-related properties, support property change notifications, and provide a reset command for restoring default values (`VisualTransformViewModel.cs`). Identified Issue: - dotnet#32724 - dotnet#32731 https://github.com/user-attachments/assets/c3653dfc-e225-4d98-92ee-0d1836f66788 --------- 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: NafeelaNazhir <nafeela.nazhirhussain@syncfusion.com> Co-authored-by: LogishaSelvarajSF4525 <logisha.selvaraj@syncfusion.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!
This pull request adds a new VisualTransform feature matrix to the test application, allowing users to interactively explore and manipulate visual transformation properties (such as rotation, scale, translation, anchor points, and shadow) on a sample UI element. The implementation includes a new view model, Control page, and options page for setting transformation parameters.
VisualTransform Feature Matrix Addition
Added a new entry for the VisualTransform feature matrix in the main gallery page list, exposing it in the test app UI (
CorePageView.cs).Introduced
VisualTransformControlPageandVisualTransformControlMainPage, which display a demo element whose visual transformation properties can be interactively modified and reset. Navigation to an options page is supported for property editing (VisualTransformControlPage.xaml,VisualTransformControlPage.xaml.cs). [1] [2]Added
VisualTransformOptionsPagefor editing transformation properties (rotation, scale, translation, anchor points, visibility, and shadow) with two-way data binding to the view model (VisualTransformOptionsPage.xaml,VisualTransformOptionsPage.xaml.cs). [1] [2]Implemented
VisualTransformViewModelto encapsulate all transformation-related properties, support property change notifications, and provide a reset command for restoring default values (VisualTransformViewModel.cs).Identified Issue:
Screen.Recording.2025-11-21.at.7.02.26.PM.mov