-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Fixed scrolling issue on ProjectListPage #27005
base: main
Are you sure you want to change the base?
Conversation
Hey there @Vignesh-SF3580! Thank you so much for your PR! Someone from the team will get assigned to your PR shortly and we'll get it reviewed. |
@dotnet-policy-service terminate |
@dotnet-policy-service agree company="Syncfusion, Inc." |
1 similar comment
@dotnet-policy-service agree company="Syncfusion, Inc." |
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
|
||
<controls:AddButton | ||
Command="{Binding AddProjectCommand}" /> | ||
<CollectionView |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we just put a ScrollView around the VSL?
I think because this page won't really have many elements just keeping a simple BindableLayout is a useful example
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've updated the code based on your feedback. Could you please review it and let me know if there are any further concerns
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
Issue Detail
Scrolling is not working in ProjectListPage.
Root Cause
The ProjectList content was wrapped inside a Grid. Since the Grid layout does not support scrolling, any content exceeding the screen height was not accessible.
Description of Change
Replaced the VerticalStackLayout with a CollectionView in the ProjectListPage.
Tested the behaviour in the following platforms
Issues Fixed
Fixes #26917
Screenshots
ios:
26917Before.mov
26917After.mov
Mac:
MacBefore.mov
MacAfter.mov
Android:
AndroidBefore.mov
AndroidAfter.mov
Windows:
WindowsBefore.mov
WindowsAfter1.mov