secant-ios-wallet/xctemplates/Router Templates/Router.xctemplate/___FILEBASENAME___Router.swift

32 lines
551 B
Swift
Raw Normal View History

2021-08-06 16:38:47 -07:00
//___FILEHEADER___
import Foundation
import SwiftUI
class ___FILEBASENAMEASIDENTIFIER___: Router {
// MARK: - Published vars
// Put published vars here
// MARK: - Private vars
// MARK: - Internal vars
var services: Services
// MARK: - Initialization
init(services: Services) {
self.services = services
}
// MARK: - Methods
func rootView() -> some View {
// Add your content here
NavigationView {
Text("Hello Word")
}
}
}