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
import Combine | |
import SwiftUI | |
struct CountdownView: View { | |
@State private var countdown: Int = 15 * 60 | |
@State private var displayedTime = "15:00" | |
@State private var countdownTimer: AnyCancellable? | |
@State private var isShowingLaurels = false | |
@State private var isShowingExpiry = false |