Skip to content

Commit

Permalink
fix: 삭제된 이미지 확대 기능 복구
Browse files Browse the repository at this point in the history
  • Loading branch information
hsgo2430 committed Oct 25, 2024
1 parent 3a89d08 commit b083fef
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import `in`.koreatech.koin.core.analytics.EventExtra
import `in`.koreatech.koin.core.analytics.EventLogger
import `in`.koreatech.koin.core.appbar.AppBarBase
import `in`.koreatech.koin.core.constant.AnalyticsConstant
import `in`.koreatech.koin.core.dialog.ImageZoomableDialog
import `in`.koreatech.koin.core.toast.ToastUtil
import `in`.koreatech.koin.core.util.dataBinding
import `in`.koreatech.koin.databinding.StoreActivityDetailBinding
Expand Down Expand Up @@ -359,6 +360,10 @@ class StoreDetailActivity : KoinNavigationDrawerActivity() {

binding.storeDetailImageview.apply {
adapter = StoreDetailImageViewpagerAdapter(it.imageUrls) {
ImageZoomableDialog(context, it)
.also {
zoomableDialog -> zoomableDialog.show()
}
EventLogger.logClickEvent(
EventAction.BUSINESS,
AnalyticsConstant.Label.SHOP_PICTURE,
Expand Down

0 comments on commit b083fef

Please sign in to comment.