private let sneakersImage: UIImageView = {
let imageView = UIImageView()
imageView.translatesAutoresizingMaskIntoConstraints = false
imageView.backgroundColor = .gray
imageView.image = UIImage(named: "Aztrek 93.png")
imageView.contentMode = .scaleAspectFill
return imageView
} ()
let sneakersImageTopAnchor = sneakersImage.topAnchor.constraint(equalTo: self.modelName.bottomAnchor, constant: 50)
sneakersImageTopAnchor.isActive = true
let sneakersImageCenterXAnchor = sneakersImage.centerXAnchor.constraint(equalTo: self.view.centerXAnchor)
sneakersImageCenterXAnchor.isActive = true
let sneakersImageWidthtAnchor = sneakersImage.widthAnchor.constraint(equalTo: self.view.widthAnchor, multiplier: 0.5)
sneakersImageWidthtAnchor.isActive = true
let sneakerImageHeightAnchor = sneakersImage.heightAnchor.constraint(equalTo: self.view.widthAnchor, constant: sneakersImageWidthtAnchor.constant)
sneakerImageHeightAnchor.isActive = true