-
Notifications
You must be signed in to change notification settings - Fork 14
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
Split List View Widgets into "List View" and "Grid View" #124
Conversation
bc810e3
to
5b265b0
Compare
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.
Nice
Can you update Column view description to be consistent with
Arrange a large and dynamic list of items in columns
and also update the document links
(the code of Column View is fine)
You can then mark this PR as ready and re-request my review
src/Grid View/main.blp
Outdated
|
||
Adw.StatusPage { | ||
title: _("Grid View"); | ||
description: _("Grid view presents a dynamic list of model items arranged in a grid"); |
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.
description: _("Grid view presents a dynamic list of model items arranged in a grid"); | |
description: _("Arrange a large and dynamic list of items in a grid"); |
(don't forget to update main.json
)
src/List View/main.blp
Outdated
title: _("List View Widgets"); | ||
description: _("List and Grid views present a large dynamic list of model items"); | ||
title: _("List View"); | ||
description: _("List View presents a dynamic list of vertically stacked model items"); |
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.
description: _("List View presents a dynamic list of vertically stacked model items"); | |
description: _("Arrange a large and dynamic list of items one after the other"); |
(don't forget to update main.json
)
On it! Marking this ready, let me know if this isn't the correct change for the links <:) |
Previously, List View widgets had both List View and Grid View stacked together. Since Column view is a separate demo, It is more logical to split List View Widgets into List View and Grid View Final implementation for separating both views Change descriptions for List View, Grid View and Column View to be less verbose as suggested by @sonnyp Add separate Documentation and Column API reference links for Column View Part of workbenchdev#121
8712dbd
to
f14e79a
Compare
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.
Thanks!
Made a small change to doc links for consistency 536aecb
Please don't force push to your branches going forward. Multiple commits is fine - they get squashed into a single commit when I merge the PR
Fixes #121
List View Widgets had List View and Grid View stacked together, they can split into two
separate demos.
Introduced initial implementation for the same, Descriptions for both may need further discussion
Let me know any changes that need to be done
Screengrabs for the changes :
Grid View
2024-03-17.21-05-16.mp4
List View
2024-03-17.21-04-46.mp4
Part of #121