diff --git a/LearnEnglish/LearnEnglish/Views/WordDetailViewController.swift b/LearnEnglish/LearnEnglish/Views/WordDetailViewController.swift index dfdf8fa..149186a 100644 --- a/LearnEnglish/LearnEnglish/Views/WordDetailViewController.swift +++ b/LearnEnglish/LearnEnglish/Views/WordDetailViewController.swift @@ -87,18 +87,10 @@ final class WordDetailViewController: UIViewController { wordLabel.font = Theme.Font.wordHero() wordLabel.textAlignment = .center - let phoneticIcon = UIImageView(image: UIImage( - systemName: "speaker.wave.2", - withConfiguration: UIImage.SymbolConfiguration(pointSize: 13, weight: .medium))) - phoneticIcon.tintColor = .secondaryLabel let phoneticLabel = UILabel() phoneticLabel.text = word.phonetic phoneticLabel.font = .preferredFont(forTextStyle: .title3) phoneticLabel.textColor = .secondaryLabel - let phoneticRow = UIStackView(arrangedSubviews: [phoneticIcon, phoneticLabel]) - phoneticRow.axis = .horizontal - phoneticRow.alignment = .center - phoneticRow.spacing = 6 var buttonConfig = UIButton.Configuration.filled() buttonConfig.baseBackgroundColor = Theme.Color.accent @@ -115,7 +107,7 @@ final class WordDetailViewController: UIViewController { speakButton.heightAnchor.constraint(equalToConstant: 56) ]) - let stack = UIStackView(arrangedSubviews: [wordLabel, phoneticRow, speakButton]) + let stack = UIStackView(arrangedSubviews: [wordLabel, phoneticLabel, speakButton]) stack.axis = .vertical stack.spacing = 16 stack.alignment = .center