ContentView.swift
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | // // ContentView.swift // SwiftUIProject // // Created by Cairocoders // import SwiftUI struct ContentView: View { @State private var isLoading = false @State private var notconnected = false @ObservedObject var monitor = NetworkMonitor() var body: some View { ZStack { if notconnected { VStack { Image(systemName: monitor.isConnected ? "wifi" : "wifi.slash" ) .font(. system (size: 56)) Text(monitor.isConnected ? "Connected!" : "Not connected!" ) .padding() } } else { Home() } if isLoading { loadingView() } } .onAppear { startCheckNetworkCall() } } func startCheckNetworkCall() { isLoading = true DispatchQueue.main.asyncAfter(deadline: .now() + 3) { if monitor.isConnected { isLoading = false notconnected = false print( "Success" ) } else { isLoading = false notconnected = true print( "not connected" ) } } } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } } struct loadingView: View { var body: some View { ZStack { Color(.systemBackground) .ignoresSafeArea() ProgressView() .progressViewStyle(CircularProgressViewStyle(tint: .orange)) .scaleEffect(3) } } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | // // Home.swift // SwiftUIProject // // Created by Cairocoders // import SwiftUI struct Home: View { var body: some View { NavigationView { VStack { HStack(spacing: 16) { Image( "pic" ) .resizable() .scaledToFill() .frame(width: 50, height: 50) .clipped() .cornerRadius(50) .overlay(RoundedRectangle(cornerRadius: 44) .stroke(Color(.label), lineWidth: 1) ) .shadow(radius: 5) VStack(alignment: .leading, spacing: 4) { Text( "cairocoders" ) .font(. system (size: 24, weight: .bold)) HStack { Circle() .foregroundColor(.green) .frame(width: 14, height: 14) Text( "online" ) .font(. system (size: 12)) .foregroundColor(Color(.lightGray)) } } Spacer() Button { } label: { Image(systemName: "gear" ) .font(. system (size: 24, weight: .bold)) .foregroundColor(Color(.label)) } } //End HStack .padding() ScrollView { ForEach(1..<4){i in Button(action: { }) { VStack { HStack(spacing: 16) { Image( "photo\(i)" ) .resizable() .scaledToFill() .frame(width: 50, height: 50) .clipped() .cornerRadius(50) VStack(alignment: .leading) { Text( "User Name \(i)" ) .font(. system (size: 16, weight: .bold)) Text( "View Profile" ) .font(. system (size: 14)) .foregroundColor(Color(.lightGray)) } Spacer() Text( "22m" ) .font(. system (size: 14, weight: .semibold)) } Divider() .padding(.vertical, 8) }.padding(.horizontal) } } //End ForEach .padding(.bottom, 50) } // End scrollview } .navigationBarHidden( true ) } } } struct Home_Previews: PreviewProvider { static var previews: some View { Home() } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | // // NetworkMonitor.swift // SwiftUIProject // // Created by Cairocoders // import Foundation import Network final class NetworkMonitor: ObservableObject { let monitor = NWPathMonitor() let queue = DispatchQueue(label: "Monitor" ) @Published var isConnected = true init() { monitor.pathUpdateHandler = { [weak self] path in DispatchQueue.main.async { self?.isConnected = path.status == .satisfied ? true : false } } monitor.start(queue: queue) } } |