Skip to content
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

Implements tizen platform #692

Merged
merged 29 commits into from
Nov 8, 2022
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
b33e87e
Implements tizen platform
myroot Oct 11, 2022
90d9000
Apply review comment
myroot Oct 15, 2022
c042667
Update src/CommunityToolkit.Maui/Alerts/Snackbar/Snackbar.tizen.cs
VladislavAntonyuk Oct 15, 2022
377773e
Update src/CommunityToolkit.Maui/Alerts/Snackbar/Snackbar.tizen.cs
VladislavAntonyuk Oct 15, 2022
4cfe693
Update src/CommunityToolkit.Maui/Alerts/Snackbar/Snackbar.tizen.cs
VladislavAntonyuk Oct 15, 2022
e212b87
Update src/CommunityToolkit.Maui/Alerts/Snackbar/Snackbar.tizen.cs
VladislavAntonyuk Oct 16, 2022
636b387
Apply review comment
myroot Oct 16, 2022
2c97be7
attempt to use 6.0.300
VladislavAntonyuk Oct 18, 2022
ce550ba
6.0.400
VladislavAntonyuk Oct 18, 2022
a2c860f
6.0.424
VladislavAntonyuk Oct 18, 2022
3327e8c
486
VladislavAntonyuk Oct 18, 2022
a5f05f7
540
VladislavAntonyuk Oct 18, 2022
9ad0e8a
Merge branch 'main' into add-tizen-handlers
brminnick Oct 21, 2022
c431204
Update azure-pipelines.yml
brminnick Oct 21, 2022
947056d
Formatting Updates
brminnick Oct 21, 2022
c7ff665
Add
brminnick Oct 21, 2022
0434c1e
Remove duplicate enums
brminnick Oct 21, 2022
e654f33
Fix variable conflicts
brminnick Oct 21, 2022
186938f
Defer to thread pool thread
brminnick Oct 21, 2022
a5a964d
Merge branch 'main' into add-tizen-handlers
pictos Oct 23, 2022
29d147c
Fix MauiPopup anchor position
myroot Oct 24, 2022
08bf36d
Apply review comment
myroot Oct 24, 2022
91e9cc7
Fix GetImageStream without await
myroot Oct 24, 2022
6af8ec7
Add UnsupportedOSPlatform attribute on unsupported behaviors
myroot Oct 24, 2022
c000bcb
Merge branch 'main' into add-tizen-handlers
brminnick Oct 27, 2022
4cdb7a4
Merge branch 'main' into add-tizen-handlers
JoonghyunCho Nov 1, 2022
2005cd5
Merge branch 'main' into add-tizen-handlers
JoonghyunCho Nov 8, 2022
06d23e0
Merge branch 'main' into add-tizen-handlers
brminnick Nov 8, 2022
43e1fda
Merge branch 'main' into add-tizen-handlers
JoonghyunCho Nov 8, 2022
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
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,8 @@ public void ShowPopup()
{
var anchorView = VirtualView.Anchor.ToPlatform();
var anchorPosition = anchorView.ScreenPosition;
Content.ScreenToLocal(out float x, out float y, anchorPosition.X, anchorPosition.Y);
Layout = new AbsoluteLayout();
Content.UpdatePosition(new Tizen.UIExtensions.Common.Point(x, y));
Content.UpdatePosition(new Tizen.UIExtensions.Common.Point(anchorPosition.X, anchorPosition.Y));
JoonghyunCho marked this conversation as resolved.
Show resolved Hide resolved
}
else
{
Expand Down