21 lines
476 B
Swift
21 lines
476 B
Swift
//
|
|
// ModalMoleculeStackTemplate.swift
|
|
// MVMCoreUI
|
|
//
|
|
// Created by Ryan on 3/6/20.
|
|
// Copyright © 2020 Verizon Wireless. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
open class ModalMoleculeStackTemplate: MoleculeStackTemplate {
|
|
|
|
override open func newDataBuildScreen() {
|
|
super.newDataBuildScreen()
|
|
MVMCoreUICommonViewsUtility.addCloseButton(to: view, action: {[weak self] _ in
|
|
self?.dismiss()
|
|
}, verticalCentered: false)
|
|
}
|
|
|
|
}
|