We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Using SkeletonForEach twice in a LazyVGrid causes the IDs to be duplicated which leads to several bugs.
SkeletonForEach
To Reproduce
LazyVGrid(columns: gridLayout, spacing: 20) { SkeletonForEach(with: ..., quantity: 2) { (loading, item) in Text(item).skeleton(with: loading) } SkeletonForEach(with: ..., quantity: 2) { (loading, item) in Text(item).skeleton(with: loading) } }
Expected behavior To be able to use two SkeletonForEach's.
Additional context
develop
The text was updated successfully, but these errors were encountered:
This is still the case in 2024
Sorry, something went wrong.
Fix for CSolanaM#36
de7d906
Two SkeletonForEach in a LazyVGrid causes duplicate IDs
No branches or pull requests
Describe the bug
Using
SkeletonForEach
twice in a LazyVGrid causes the IDs to be duplicated which leads to several bugs.To Reproduce
Expected behavior
To be able to use two
SkeletonForEach
's.Additional context
develop
The text was updated successfully, but these errors were encountered: