view GeoQuiz/Components/ActivityAlertHelper.swift @ 13:bdfff35dd43c

implement RevenueCat
author Dennis C. M. <dennis@denniscm.com>
date Wed, 12 Oct 2022 11:47:29 +0200
parents
children
line wrap: on
line source

//
//  ActivityAlertHelper.swift
//  GeoQuiz
//
//  Created by Dennis Concepción Martín on 12/10/22.
//

import SwiftUI

struct ActivityAlert: View {
    var body: some View {
        VStack(spacing: 10) {
            ProgressView()
            Text("Loading")
        }
        .padding()
        .background(.regularMaterial)
        .cornerRadius(10)
    }
}

struct ActivityAlert_Previews: PreviewProvider {
    static var previews: some View {
        ActivityAlert()
    }
}