//
//  SideLyingLandingVC.swift
//  BreastFeedingDemo
//
//  Created by Jie Zhang on 2022/10/6.
//

import UIKit

class SideLyingLandingVC: BaseLandingVC {
    @IBOutlet weak var titleL: UILabel!

    @IBOutlet weak var subtitleL: UILabel!
    @IBOutlet weak var text1L: UILabel!
    @IBOutlet weak var text2L: UILabel!
    @IBOutlet weak var text3L: UILabel!
    @IBOutlet weak var text4L: UILabel!
    @IBOutlet weak var text5L: UILabel!

    @IBOutlet weak var tipsL: UILabel!
    @IBOutlet weak var startBtn: UIButton!
    override func viewDidLoad() {
        super.viewDidLoad()

        setupUI()
    }

    @IBAction func back(_ sender: Any) {
        navigationController?.popViewController(animated: true)
    }

    fileprivate func setupUI() {
        titleL.text = getString().lyingGestureIntroduce.title
        subtitleL.text = getString().lyingGestureIntroduce.subTitle
        text1L.text = getString().lyingGestureIntroduce.suggestedText1
        text2L.text = getString().lyingGestureIntroduce.suggestedText2
        text3L.text = getString().lyingGestureIntroduce.suggestedText3
        text4L.text = getString().lyingGestureIntroduce.suggestedText4
        text5L.text = getString().lyingGestureIntroduce.suggestedText5
        startBtn.setTitle(getString().homeButtonText, for: .normal)
        tipsL.text = getString().lyingGestureIntroduce.tipsText
    }
}