MarketPassViewController.swift
926 Bytes
//
// MarketPassViewController.swift
// SwiftWarplyFramework
//
// Created by Manos Chorianopoulos on 14/1/25.
//
import UIKit
import RSBarcodes_Swift
import AVFoundation
@objc public class MarketPassViewController: UIViewController {
public override func viewDidLoad() {
super.viewDidLoad()
self.hidesBottomBarWhenPushed = true
setBackButton()
setNavigationTitle("SUPERMARKET DEALS")
// Setup the info button with an action
setNavBarRightInfoButton() {
// This closure is the action that will be executed when the info button is tapped
// self.presentInfoPopup()
}
}
public override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
swiftApi().logTrackersEvent("screen", "MarketPassScreen")
self.navigationController?.hideHairline()
}
}