Skip to content

[2025/04/21] Candidate - In Flight Branch #29037

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Apr 23, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
39caefa
[Windows] - Fix Visual State Issue with Picker TextColor After Naviga…
prakashKannanSf3972 Apr 8, 2025
bf27f69
[iOS] Fixed the TargetInvocationException Occurs When Selecting Heade…
Ahamed-Ali Apr 11, 2025
12d2d5e
[iOS] - Resolved Proper Rendering of Dynamic Header/Footer Updates in…
prakashKannanSf3972 Apr 11, 2025
0987b16
[Android] Fixed ScalingCanvas.SetBlur not working (#28911)
NirmalKumarYuvaraj Apr 11, 2025
a009f76
[Windows] Upgrade to Windows App SDK 1.7 (#28499)
MartyIX Apr 11, 2025
9e2cbac
[iOS] Fix FlyoutPage does not respond to changes in the FlyoutLayoutB…
devanathan-vaithiyanathan Apr 11, 2025
0a240f9
[Android] Fixed the Incorrect Text Color Applied to Selected Tab in T…
Ahamed-Ali Apr 11, 2025
624223c
[iOS] Fix for the File.ContentType from MediaPicker not being in vali…
SyedAbdulAzeemSF4852 Apr 11, 2025
57f7f4d
[XC] add IRootObjectProvider (#28310)
StephaneDelcroix Apr 11, 2025
dfeadeb
[Android] picker - focus/unfocus events (#28122)
kubaflo Apr 16, 2025
9576008
[Windows] Fixed the flyout content width not being set correctly afte…
Tamilarasan-Paranthaman Apr 16, 2025
1fb5164
Revert "[Android] picker - focus/unfocus events (#28122)"
PureWeen Apr 16, 2025
16cd5f2
Fixed Test case failure in PR 29037 - [2025/04/21] Candidate (#29049)
HarishKumarSF4517 Apr 21, 2025
76baabc
Fix CarouselView layout SR6 regressions (#29035)
albyrock87 Apr 22, 2025
b1c026c
[Testing] Feature Matrix UITest Cases for CollectionView EmptyView Fe…
NafeelaNazhir Apr 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "[Android] picker - focus/unfocus events (#28122)"
This reverts commit dfeadeb.
  • Loading branch information
PureWeen committed Apr 16, 2025
commit 1fb5164929e29a1095ab8ddfb8eeb22a0befe382
24 changes: 0 additions & 24 deletions src/Controls/tests/TestCases.HostApp/Issues/Issue28121.xaml

This file was deleted.

21 changes: 0 additions & 21 deletions src/Controls/tests/TestCases.HostApp/Issues/Issue28121.xaml.cs

This file was deleted.

This file was deleted.

8 changes: 2 additions & 6 deletions src/Core/src/Handlers/Picker/PickerHandler.Android.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,14 +152,10 @@ void OnClick(object? sender, EventArgs e)

_dialog.SetCanceledOnTouchOutside(true);

_dialog.DismissEvent += OnDismiss;

void OnDismiss(object? s, EventArgs e)
_dialog.DismissEvent += (sender, args) =>
{
_dialog.DismissEvent -= OnDismiss;
PlatformView?.ClearFocus();
_dialog = null;
}
};

_dialog.Show();
}
Expand Down
Loading