mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-08-19 11:40:56 +00:00
* Switch to string symbols * Names * Cleanup packages * Cleanup packages * Remove namespace * More cleanup * Fix extra param. * Use swiftbuild
25 lines
500 B
Swift
25 lines
500 B
Swift
import SwiftUI
|
|
|
|
struct NoStoresView: View {
|
|
|
|
var body: some View {
|
|
VStack {
|
|
Text(.noSecureStorageTitle)
|
|
.bold()
|
|
Text(.noSecureStorageDescription)
|
|
Link(.noSecureStorageYubicoLink, destination: URL(string: "https://www.yubico.com/products/compare-yubikey-5-series/")!)
|
|
}.padding()
|
|
}
|
|
|
|
}
|
|
|
|
#if DEBUG
|
|
|
|
struct NoStoresView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
NoStoresView()
|
|
}
|
|
}
|
|
|
|
#endif
|