// // OfflineBanner.swift // iosApp // // Created by Ivan Avalos on 17/09/23. // Copyright © 2023 orgName. All rights reserved. // import SwiftUI struct OfflineBanner: View { var body: some View { Group { Text("offline") .foregroundColor(.white) .padding(5) } .frame(minWidth: 0, maxWidth: .infinity) .background(Color.red) } } struct OfflineBanner_Previews: PreviewProvider { static var previews: some View { OfflineBanner() } }