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
To reproduce, in CardHorizontal.kt replace:
CardHorizontal.kt
image = rememberAsyncImagePainter( model = recipe.imageUrl, placeholder = painterResource(id = R.drawable.placeholder), error = painterResource(id = R.drawable.placeholder) ),
with:
image = rememberAsyncImagePainter( model = ImageRequest.Builder(context) .data(recipe.imageUrl) .size(Size(800, 800)) .build(), placeholder = painterResource(id = R.drawable.placeholder), error = painterResource(id = R.drawable.placeholder) ),
The text was updated successfully, but these errors were encountered:
[#445] Fix a bug where image height is wrong in some cases in `OdsHor…
0fcb5cf
…izontalCard`
102b644
3ac3e78
[#445] Review: Remove unnecessary barriers in OdsHorizontalCard
71d4bd5
Successfully merging a pull request may close this issue.
To reproduce, in
CardHorizontal.kt
replace:with:
The text was updated successfully, but these errors were encountered: