secant-ios-wallet/secant/ContentView.swift

23 lines
393 B
Swift
Raw Permalink Normal View History

2021-07-29 15:38:35 -07:00
//
// ContentView.swift
// secant
//
// Created by Francisco Gindre on 7/29/21.
//
import SwiftUI
struct ContentView: View {
var body: some View {
Text("Hello, Zcash!")
2021-10-05 06:10:56 -07:00
.font(FontFamily.Zboto.regular.textStyle(.body))
2021-07-29 15:38:35 -07:00
.padding()
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}