Combining all the elements into one view
To put all of our finished views together into one unified grouping to make the finished project, let’s go back into the ContentView
file and add the following code:
struct ContentView : View { var body: some View { ZStack { //MARK: - ADD THE GRADIENT BACKGROUND RadialGradient(gradient: Gradient(colors: [.white, .black]), center: .center, startRadius: 20, endRadius: 600) .scaleEffect(1.2) ...