mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
23 lines
554 B
Swift
23 lines
554 B
Swift
import SwiftUI
|
|
|
|
struct NoDocumentsView: View {
|
|
var body: some View {
|
|
VStack(spacing: 20) {
|
|
HStack {
|
|
Image(systemName: "doc")
|
|
Text("No documents")
|
|
}
|
|
Text("Share files from Finder on a Mac\nor iTunes on Windows")
|
|
.multilineTextAlignment(.center)
|
|
}
|
|
.frame(maxWidth: .infinity)
|
|
.foregroundColor(.secondary)
|
|
}
|
|
}
|
|
|
|
struct NoDocumentsView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
NoDocumentsView()
|
|
}
|
|
}
|