secretive/Sources/Secretive/Views/NoStoresView.swift

25 lines
513 B
Swift
Raw Normal View History

2020-03-21 03:20:20 +00:00
import SwiftUI
struct NoStoresView: View {
2020-09-22 06:12:50 +00:00
2020-03-21 03:20:20 +00:00
var body: some View {
VStack {
2024-01-05 01:46:08 +00:00
Text("no_secure_storage_title")
.bold()
Text("no_secure_storage_description")
Link("no_secure_storage_yubico_link", destination: URL(string: "https://www.yubico.com/products/compare-yubikey-5-series/")!)
2020-03-21 03:20:20 +00:00
}.padding()
}
2020-09-22 06:12:50 +00:00
2020-03-21 03:20:20 +00:00
}
2020-09-22 06:12:50 +00:00
#if DEBUG
2020-03-21 03:20:20 +00:00
struct NoStoresView_Previews: PreviewProvider {
static var previews: some View {
NoStoresView()
}
}
2020-09-22 06:12:50 +00:00
#endif