Advertisement
Guest User

SwiftUI Code for Timer Button

a guest
Apr 4th, 2025
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 2.64 KB | None | 0 0
  1. import SwiftUI
  2.  
  3. struct ContentView: View {
  4.     @State var percent: CGFloat = 0.0
  5.     @State private var isTimerRunning = false
  6.     @State private var timeRemaining = 10
  7.     let timer = Timer.publish(every: 1, on: .main, in: .common).autoconnect()
  8.     var body: some View {
  9.         CustomProgressView(percent: self.$percent, timeRemaining: self.$timeRemaining)
  10.             .onTapGesture {
  11.                 resetAndStartTimer()
  12.             }
  13.             .animation(.linear(duration: 1), value: percent)
  14.  
  15.         Button(action: {
  16. //            resetAndStartTimer()
  17.         }) {
  18.             Text(isTimerRunning ? "Restart Timer" : "Start Timer")
  19.                 .font(.headline)
  20.                 .padding()
  21.                 .background(Color.blue)
  22.                 .foregroundColor(.white)
  23.                 .cornerRadius(10)
  24.         }
  25.         .padding()
  26.         .onReceive(timer) { _ in
  27.             updateTimer()
  28.         }
  29.    
  30.     }
  31.    
  32.     private func resetAndStartTimer() {
  33.         percent = 1.0
  34.         timeRemaining = 10
  35.         isTimerRunning = true
  36.     }
  37.     private func updateTimer(){
  38.         guard isTimerRunning ,timeRemaining > 0 else {return}
  39.         timeRemaining -= 1
  40.         percent = CGFloat(timeRemaining)/10.0
  41.        
  42.         if timeRemaining == 0 {
  43.             isTimerRunning = false
  44.         }
  45.        
  46.     }
  47. }
  48.  
  49. #Preview {
  50.     ContentView()
  51. }
  52.  
  53.  
  54. struct CustomProgressView: View {
  55.     @Binding var percent: CGFloat
  56.     @Binding var timeRemaining: Int
  57.         var body: some View {
  58.             VStack {
  59.                
  60.                 ZStack(alignment: .leading) {
  61.                     RoundedRectangle(cornerRadius: 12)
  62.                         .fill(Color.init(hex: "#BD7B00"))
  63.                         .offset(y: 3)
  64.                     RoundedRectangle(cornerRadius: 12)
  65.                         .fill(Color.init(hex: "#D98D00"))
  66.                    
  67.                     RoundedRectangle(cornerRadius: 10)
  68.                         .fill(Color.init(hex: "#FCAB18"))
  69.                         .onTapGesture {
  70.                             print("Hii you tapped me")
  71.                         }
  72.                         .frame(width: calculatePercent())
  73.                         .clipped(antialiased: true)
  74.  
  75.                 }
  76.  
  77.                 .overlay(
  78.                     Text("Play again(\(timeRemaining))s")
  79.                         .font(.subheadline)
  80.                         .animation(nil)
  81.                 )
  82.  
  83.  
  84.             }
  85.             .frame(width: 250, height: 60)
  86.  
  87.  
  88.         }
  89.         func calculatePercent()  -> CGFloat{
  90.             let width = 250.00
  91.             return width * self.percent
  92.         }
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement