Skip to content

Commit

Permalink
[fix] 캡슐 블러 수정 (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
hongpower committed Dec 8, 2022
1 parent e1b1160 commit 3765f38
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions SpaceCapsule/SpaceCapsule/Components/BlurEffectView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@ import UIKit

final class CapsuleBlurEffectView: UIVisualEffectView {
init() {
super.init(effect: UIBlurEffect(style: .regular))
// self.backgroundColor = .black.withAlphaComponent(0.2)
super.init(effect: UIBlurEffect(style: .systemUltraThinMaterialDark))
self.layer.cornerRadius = FrameResource.listCapsuleCellWidth / 2
self.clipsToBounds = true
// self.alpha = FrameResource.blurEffectAlpha
}

@available(*, unavailable)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ final class DetailImageViewController: UIViewController {
viewModel?.output.imageSources
.subscribe(onNext: { [weak self] imageData in
let index = imageData.index
print(index)
self?.applySnapshot(items: imageData.sources)

self?.mainView.itemCount = imageData.sources.count
Expand Down

0 comments on commit 3765f38

Please sign in to comment.