Vladimir Dubovik 92b125927d Commit
2024-12-12 13:37:07 +03:00

16 lines
292 B
Swift

//
// OffsetKey.swift
// Schedule ICTIS
//
// Created by Mironov Egor on 18.11.2024.
//
import SwiftUI
struct OffsetKey: PreferenceKey {
static var defaultValue: CGFloat = 0
static func reduce(value: inout CGFloat, nextValue: () -> CGFloat) {
value = nextValue()
}
}