16 lines
339 B
Swift
16 lines
339 B
Swift
//
|
|
// MoleculeStackCenteredTemplate.swift
|
|
// MVMCoreUI
|
|
//
|
|
// Created by Scott Pfeil on 2/12/19.
|
|
// Copyright © 2019 Verizon Wireless. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
public class MoleculeStackCenteredTemplate: MoleculeStackTemplate {
|
|
public override func spaceBetweenTopAndMiddle() -> CGFloat? {
|
|
return nil
|
|
}
|
|
}
|