Member-only story
Building an Analog Clock in SwiftUI: A Step-by-Step Guide

SwiftUI is a powerful and intuitive framework for building user interfaces across all Apple platforms. One of the many exciting projects you can create with SwiftUI is an analog clock. In this article, we’ll walk through the process of creating an analog clock from scratch, focusing on the key components and code snippets that bring it to life.
1. Understanding the Project Structure
The project is divided into three main components:
AnalogClockView.swift
: This file contains the UI components and layout for the analog clock.AnalogClockViewModel.swift
: This file contains the logic for updating the time and animating the clock's gradient.ContentView.swift
: This file demonstrates how to integrate and display multiple instances of theAnalogClockView
.
2. The AnalogClockView: Designing the Clock’s Face and Hands
The AnalogClockView
is the main component of the analog clock. It handles the visual representation of the clock, including the clock face, hour, minute, and second hands, and the numbers around the clock.

This struct uses a variety of state properties to manage the dimensions of the clock face and view. It also takes in several customizable parameters, such as colors and sizes for the clock face and hands, making the clock’s appearance highly flexible.
Clock Face
The clock face is represented by a circle with a gradient border that animates to create a dynamic effect.

Here, we use an AngularGradient
to create a rotating border around the clock face, adding visual interest. The background is filled with the clockFaceColor
specified by the user.