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

20 lines
387 B
Swift
Raw Normal View History

2021-08-06 16:38:47 -07:00
//___FILEHEADER___
import Foundation
import SwiftUI
class ___FILEBASENAMEASIDENTIFIER___: Router {
var services: Services
init(services: Services) {
self.services = services
}
2021-09-14 04:15:29 -07:00
2021-08-06 16:38:47 -07:00
func rootView() -> some View {
// Add your content here
NavigationView {
2021-09-14 04:15:29 -07:00
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
2021-08-06 16:38:47 -07:00
}
}
}