Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions iBox/Sources/CustomLaunchScreen/CustomLaunchScreenView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,16 @@ class CustomLaunchScreenView: UIView {
}

private func configureUI() {
backgroundColor = .box2

logoImageView.image = UIImage(named: "1024")
backgroundColor = .backgroundColor
logoImageView.image = UIImage(named: "playstore")
logoImageView.contentMode = .scaleAspectFit
addSubview(logoImageView)

for imageName in images {
let imageView = UIImageView(image: UIImage(named: imageName))
imageView.contentMode = .scaleAspectFit
imageView.isHidden = true
imageView.tintColor = .white
imageView.tintColor = .box2
addSubview(imageView)
imageViews.append(imageView)
}
Expand Down