This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 2022 (c) Alexey Grigorev, Ivan Oparin | |
// licensed under MIT | |
import SwiftUI | |
internal struct FixedTransactionTransition: ViewModifier { | |
@Binding var isPresentInParentContainer: Bool | |
@Binding var isPresentInBody: Bool | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// HapticTouchToggle.swift | |
// Created by @shengchalover on 15.12.2019. | |
// License: MIT | |
// Gesture mechanics inspired by DraggableCover from MovieSwift by Thomas Ricouard _ 19/06/2019 Apache License 2.0 | |
import SwiftUI | |
///pass c as root view to UIHostingController in SceneDelegate | |
let c = HapticTouchToggle() |