Rocket.Chat.ReactNative/ios/RocketChat Watch App/Views/RetryView.swift

21 lines
353 B
Swift

import SwiftUI
struct RetryView: View {
private let label: String
private let action: () -> Void
init(_ label: String, action: @escaping () -> Void) {
self.label = label
self.action = action
}
var body: some View {
VStack {
Text(label)
.multilineTextAlignment(.center)
Button("Try Again", action: action)
}
.padding()
}
}