You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -39,8 +39,8 @@ await DisplayActionSheet("Actionsheet is set to hardcoded maxheight and maxwidth
39
39
button3.Clicked+=async(sender,e)=>
40
40
{
41
41
awaitDisplayActionSheet("This is a very long title that should wrap properly to multiple lines instead of being truncated or causing horizontal overflow issues like it might on Windows","Cancel",null,
42
-
"First Option",
43
-
"Second Option - this is a very long option text that should also wrap properly to multiple lines just like it does on Android platform to ensure cross-platform consistency",
42
+
"First Option",
43
+
"Second Option - this is a very long option text that should also wrap properly to multiple lines just like it does on Android platform to ensure cross-platform consistency",
44
44
"Third Option",
45
45
"Fourth Option - another long option to test that multiple long options can all wrap properly without causing display issues or horizontal scrolling like the old Windows implementation");
Copy file name to clipboardExpand all lines: src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue25200.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -19,15 +19,15 @@ public void ActionSheetWithSixActionsShouldDisplayProperly()
19
19
20
20
// Verify the ActionSheet title is visible
21
21
App.WaitForElement("Actionsheet is set to hardcoded maxheight and maxwidth");
22
-
22
+
23
23
// Verify all options are visible
24
24
App.WaitForElement("Option 1/6");
25
25
App.WaitForElement("Option 2/6");
26
26
App.WaitForElement("Option 3/6");
27
27
App.WaitForElement("Option 4/6");
28
28
App.WaitForElement("Option 5/6");
29
29
App.WaitForElement("Option 6/6");
30
-
30
+
31
31
// Verify Cancel button is visible
32
32
App.WaitForElement("Cancel");
33
33
@@ -46,7 +46,7 @@ public void ActionSheetWithManyActionsShouldDisplayProperly()
46
46
47
47
// Verify the ActionSheet title is visible
48
48
App.WaitForElement("This actionsheet has many more options to test if all are visible");
49
-
49
+
50
50
// Verify some key options are visible
51
51
App.WaitForElement("First Option");
52
52
App.WaitForElement("Sixth Option");
@@ -87,7 +87,7 @@ public void ActionSheetWithLongTitleShouldDisplayProperly()
87
87
App.WaitForElement("Second Option - this is a very long option text that should also wrap properly to multiple lines just like it does on Android platform to ensure cross-platform consistency");
88
88
App.WaitForElement("Third Option");
89
89
App.WaitForElement("Fourth Option - another long option to test that multiple long options can all wrap properly without causing display issues or horizontal scrolling like the old Windows implementation");
0 commit comments