-
-
Notifications
You must be signed in to change notification settings - Fork 9
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
Tags are cropped in Card view #62
Comments
This is unfortunately a known issue, it has to do with a library that I use that massively improves render times, but cannot deal with dynamic sizing, this is the related issue from that library: sbaeumlisberger/VirtualizingWrapPanel#22 To determine the size of all the cards, the library will look at the size required to render the first one, and makes all the others the same size. And because the first item in your list doesn't have any tags, no space is reserved for them and all of them will have too little space to render them. You will see that giving the first one a tag will fix it ... until you have a book with multiple lines of tags and the problem comes back as you can see here. What I will do is make sure there is always space reserved for at least 1 line of tags as that should cover most use cases, as for multi line, it's waiting on that v2 update. |
System info (please complete the following information):
The text was updated successfully, but these errors were encountered: