16 lines
368 B
Swift
16 lines
368 B
Swift
//
|
|
// ContainerProtocol.swift
|
|
// MVMCoreUI
|
|
//
|
|
// Created by Scott Pfeil on 1/16/20.
|
|
// Copyright © 2020 Verizon Wireless. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol ContainerProtocol {
|
|
func alignHorizontal(_ alignment: UIStackView.Alignment)
|
|
func alignVertical(_ alignment: UIStackView.Alignment)
|
|
func constrainView(_ view: UIView)
|
|
}
|