File tree Expand file tree Collapse file tree 3 files changed +20
-20
lines changed
src/Core/Handlers/Items2/iOS
tests/TestCases.Shared.Tests/Tests/Issues
Core/src/Platform/Windows Expand file tree Collapse file tree 3 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -499,7 +499,7 @@ async Task UpdateInitialPosition()
499499 return ;
500500 }
501501
502- if ( ! ItemsView . IsVisible )
502+ if ( ! ItemsView . IsVisible )
503503 {
504504 // If the CarouselView is not visible we don't want to set the initial position
505505 // since it will be set when the CarouselView becomes visible
Original file line number Diff line number Diff line change 44
55namespace Microsoft . Maui . TestCases . Tests . Issues
66{
7- public class Issue6101 : _IssuesUITest
8- {
9- public override string Issue => "Picker items do not appear when tapping on the picker while using PushModalAsync for navigation" ;
7+ public class Issue6101 : _IssuesUITest
8+ {
9+ public override string Issue => "Picker items do not appear when tapping on the picker while using PushModalAsync for navigation" ;
1010
11- public Issue6101 ( TestDevice device ) : base ( device )
12- {
13- }
11+ public Issue6101 ( TestDevice device ) : base ( device )
12+ {
13+ }
1414
15- [ Test ]
16- [ Category ( UITestCategories . Picker ) ]
17- public void ShouldAppearItemsWhenTappingOnPickerUsingPushModalAsync ( )
18- {
19- App . WaitForElement ( "Button" ) ;
20- App . Tap ( "Button" ) ;
21- App . WaitForElement ( "Picker" ) ;
22- App . Click ( "Picker" ) ;
23- VerifyScreenshot ( ) ;
24- }
25- }
15+ [ Test ]
16+ [ Category ( UITestCategories . Picker ) ]
17+ public void ShouldAppearItemsWhenTappingOnPickerUsingPushModalAsync ( )
18+ {
19+ App . WaitForElement ( "Button" ) ;
20+ App . Tap ( "Button" ) ;
21+ App . WaitForElement ( "Picker" ) ;
22+ App . Click ( "Picker" ) ;
23+ VerifyScreenshot ( ) ;
24+ }
25+ }
2626}
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public RootNavigationView()
3939
4040 internal new MauiToolbar ? Toolbar
4141 {
42- get => base . Toolbar as MauiToolbar ;
42+ get => base . Toolbar as MauiToolbar ;
4343 set
4444 {
4545 if ( base . Toolbar == value )
@@ -367,7 +367,7 @@ internal Maui.IView? FlyoutView
367367 // We use a container because if we just assign our Flyout to the PaneFooter on the NavigationView
368368 // The measure call passes in PositiveInfinity for the measurements which causes the layout system
369369 // to crash. So we use this Panel to facilitate more constrained measuring values
370- partial class FlyoutPanel : Panel
370+ partial class FlyoutPanel : Panel
371371 {
372372 public Maui . IView ? FlyoutView { get ; set ; }
373373
You can’t perform that action at this time.
0 commit comments