mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
23 lines
574 B
Swift
23 lines
574 B
Swift
|
import SwiftUI
|
||
|
|
||
|
struct NoDocumentsView: View {
|
||
|
var body: some View {
|
||
|
VStack(alignment: .center, 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()
|
||
|
}
|
||
|
}
|