18 lines
376 B
Swift
18 lines
376 B
Swift
//
|
|
// ViewHeightPreferenceKey.swift
|
|
// Login
|
|
//
|
|
// Created by Javier Cicchelli on 02/12/2022.
|
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ViewHeightPreferenceKey: PreferenceKey {
|
|
static var defaultValue: CGFloat = 0
|
|
|
|
static func reduce(value: inout CGFloat, nextValue: () -> CGFloat) {
|
|
value = nextValue()
|
|
}
|
|
}
|