Skip to content

Commit

Permalink
[FEAT] #3-get reviews from server and circleCrop image with coil
Browse files Browse the repository at this point in the history
  • Loading branch information
librarywon committed May 26, 2023
1 parent 6b12146 commit 9463932
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ package com.sopt.carrot.presentation.review.adapter
import android.view.LayoutInflater
import android.view.ViewGroup
import androidx.recyclerview.widget.RecyclerView
import coil.load
import coil.transform.CircleCropTransformation
import com.sopt.carrot.data.review.ResponseReviewDto
import com.sopt.carrot.databinding.ItemReviewBinding

Expand All @@ -16,7 +18,9 @@ class ReviewAdapter : RecyclerView.Adapter<RecyclerView.ViewHolder>() {
with(binding) {
tvReviewName.text = itemList.reviewerName
tvReviewReview.text = itemList.comment
//imgReviewProfile.text = itemList.nickname
imgReivewProfile.load(itemList.imageUrl) {
transformations(CircleCropTransformation())
}
}
}
}
Expand Down

0 comments on commit 9463932

Please sign in to comment.